dotfiles/home/bin/executable_linux-backup-kestrel

12 lines
310 B
Plaintext
Raw Normal View History

2023-05-21 17:12:28 -07:00
#!/usr/bin/env bash
2023-03-26 17:43:00 -07:00
echo "Creating backup with borg..."
datetime=$(date +"%Y%m%d%H%M%S")
borg create \
--progress \
--exclude "$HOME/.?*" \
--exclude "$HOME/mnt" \
--exclude "$HOME/tmp" \
--exclude "$HOME/media/roms" \
2023-03-26 17:43:00 -07:00
"$HOME/mnt/engi/backup/borg-kestrel::kestrel-${datetime}" "$HOME"