mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-01-09 13:47:08 +00:00
6 lines
278 B
Bash
Executable file
6 lines
278 B
Bash
Executable file
#!/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 -v arm64 | grep -om1 https.\*AppImage)"
|
|
appdwarf -u $LINK3
|