install script

This commit is contained in:
cupcakearmy 2019-06-20 23:54:23 +02:00
parent 0802dedb47
commit d59362e82c
1 changed files with 9 additions and 0 deletions

9
install.sh Normal file
View File

@ -0,0 +1,9 @@
#!/bin/sh
OUT_FILE=/usr/local/bin/autorestic
curl -s https://api.github.com/repos/cupcakearmy/autorestic/releases/latest \
| grep "browser_download_url.*-macos" \
| cut -d : -f 2,3 \
| tr -d \" \
| wget -q -O $OUT_FILE -i -
chmod +x $OUT_FILE