restic.sh

Signed-off-by: AKU <tom@tdpain.net>
This commit is contained in:
akp 2021-11-17 20:40:37 +00:00
parent f37962bcbc
commit ee01201712
No known key found for this signature in database
GPG key ID: AA5726202C8879B7
2 changed files with 11 additions and 0 deletions

View file

@ -21,6 +21,7 @@ Markdown docs and shell scripts for automating installation of things and docume
* [`flameshot.md`](flameshot.md) for installing Flameshot screenshot tool
* [`fuck.md`](fuck.md) for installing https://github.com/nvbn/thefuck
* [`gpaste.md`](gpaste.md) for installing the GPaste clipboard manager
* [`restic.sh`](restic.sh) for installing the Restic backup tool
* [`rootcert.md`](rootcert.md) for installing other root certificates
* [`signal.sh`](signal.sh) for installing the Signal desktop client
* [`wine.sh`](wine.sh) for Linux Mint 20.x/Ubuntu 20.04

10
restic.sh Executable file
View file

@ -0,0 +1,10 @@
#!/bin/bash
# RESTIC BACKUP TOOL
# https://restic.net/
wget https://github.com/restic/restic/releases/download/v0.12.1/restic_0.12.1_linux_amd64.bz2
bzip2 -d restic_0.12.1_linux_amd64.bz2
sudo mv restic_0.12.1_linux_amd64 /opt/bin/restic
sudo chmod +x /opt/bin/restic