mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-01-10 06:06:47 +00:00
6 lines
262 B
Plaintext
6 lines
262 B
Plaintext
|
#!/bin/bash
|
||
|
LINK1=https://raw.githubusercontent.com/AppImage/appimage.github.io/master/apps/$1.md
|
||
|
LINK2="$(curl $LINK1 | grep -o https.\*releases | sed 's|github.com|api.github.com/repos|')"
|
||
|
LINK3="$(curl $LINK2 | grep -om1 https.\*AppImage)"
|
||
|
appdwarf -u $LINK3
|