mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-10 08:54:54 +00:00
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
|
#!/bin/bash
|
||
|
if ! grep https <<< "$1"; then
|
||
|
set -- "https://github.com/$1"
|
||
|
fi
|
||
|
LINK2="$(curl "$1" | grep -o https.\*releases | sed 's|github.com|api.github.com/repos|')"
|
||
|
LINK3="$(curl "$LINK2" | grep -v arm64 | grep -om1 https.\*AppImage)"
|
||
|
appdwarf "${@:2}" -u "$LINK3"
|