install shell script

This commit is contained in:
cupcakearmy 2019-06-21 12:22:39 +02:00
parent d59362e82c
commit 24a364ce08
1 changed files with 15 additions and 3 deletions

18
install.sh Normal file → Executable file
View File

@ -1,9 +1,21 @@
#!/bin/sh
OUT_FILE=/usr/local/bin/autorestic
if [[ "$OSTYPE" == "linux-gnu" ]]; then
TYPE=linux
elif [[ "$OSTYPE" == "darwin"* ]]; then
TYPE=macos
else
echo "Unsupported OS"
exit
fi
curl -s https://api.github.com/repos/cupcakearmy/autorestic/releases/latest \
| grep "browser_download_url.*-macos" \
| grep "browser_download_url.*_${TYPE}" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -q -O $OUT_FILE -i -
chmod +x $OUT_FILE
| wget -O ${OUT_FILE} -i -
chmod +x ${OUT_FILE}
autorestic