9 lines
196 B
Bash
9 lines
196 B
Bash
#!/usr/bin/env bash
|
|
|
|
restic \
|
|
backup \
|
|
-r rclone:g:thinkbak \
|
|
--exclude-file "$HOME/.config/restic/excludes.txt" \
|
|
--exclude-file "$HOME/.conda/environments.txt" \
|
|
--verbose \
|
|
"$HOME"
|