restic.sh
Signed-off-by: AKU <tom@tdpain.net>
This commit is contained in:
parent
f37962bcbc
commit
ee01201712
2 changed files with 11 additions and 0 deletions
|
@ -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
10
restic.sh
Executable 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
|
Loading…
Add table
Add a link
Reference in a new issue