mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-01-24 21:06:45 +00:00
6 lines
284 B
Bash
Executable file
6 lines
284 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"
|