9 lines
164 B
Bash
9 lines
164 B
Bash
#!/bin/bash
|
|
|
|
function restic(){
|
|
# shellcheck disable=SC1090
|
|
source "$HOME"/.restic/restic.env
|
|
/usr/bin/restic --cacert="$HOME"/.restic/cert.pem "$@"
|
|
}
|
|
|