mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
13 lines
339 B
Bash
13 lines
339 B
Bash
#!/usr/bin/env bash
|
|
|
|
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/sync" \
|
|
--exclude "$HOME/media/roms" \
|
|
"$HOME/mnt/engi/backup/borg-kestrel::kestrel-${datetime}" "$HOME"
|