dotfiles/.functions/restic.sh

9 lines
164 B
Bash
Raw Normal View History

2021-11-12 11:51:33 +00:00
#!/bin/bash
function restic(){
# shellcheck disable=SC1090
source "$HOME"/.restic/restic.env
/usr/bin/restic --cacert="$HOME"/.restic/cert.pem "$@"
}