dotfiles/.bin/backup-and-update-system

22 lines
427 B
Plaintext
Raw Normal View History

2021-11-30 17:46:31 +00:00
#!/bin/bash
2018-12-21 16:38:50 +00:00
2021-11-30 17:46:31 +00:00
set -xeuo pipefail
2018-12-21 16:38:50 +00:00
# Push some git repos
2018-12-21 16:38:50 +00:00
pass git push
git --git-dir=$HOME/.cfg/ --work-tree=$HOME push
2018-12-21 16:38:50 +00:00
2020-12-23 08:08:37 +00:00
# Fetch a fresh copy of all locally cloned git repos
for dir in $(find /home/kunsi/git -mindepth 1 -maxdepth 1 -type d)
do
git -C "$dir" fetch || true
2020-12-23 08:08:37 +00:00
done
# Do a backup.
2022-02-13 07:47:44 +00:00
sudo /usr/local/bin/generate-backup-with-retries
printf '\a'
2021-11-30 17:46:31 +00:00
# Do updates
sudo pacman -Syu
sudo DIFFPROG='diff -u --color' pacdiff