mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
11 lines
241 B
Bash
11 lines
241 B
Bash
#!/bin/bash
|
|
#
|
|
|
|
echo "Creating backup with borg..."
|
|
datetime=$(date +"%Y%m%d%H%M%S")
|
|
borg create \
|
|
--progress \
|
|
--exclude "$HOME/.?*" \
|
|
--exclude "$HOME/mnt" \
|
|
"$HOME/mnt/engi/backup/borg-kestrel::kestrel-${datetime}" "$HOME"
|