6 lines
183 B
Bash
6 lines
183 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
wget -O "appimagetool" "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage"
|
||
|
chmod a+x appimagetool
|
||
|
mv appimagetool /usr/bin/
|