Save all KeePassXC databases

master
Hektor Misplon 2023-12-09 20:37:50 +01:00
parent 9297830bcf
commit 54f887f7d4
1 changed files with 8 additions and 3 deletions

View File

@ -8,9 +8,14 @@
# `systemctl --user enable save-passwddb.service`
# `systemctl --user enable save-passwddb.timer`
if [ -f "$HOME/doc/passwd.kdbx" ]; then
rclone copy "$HOME/doc/passwd.kdbx" google-drive:
# https://unix.stackexchange.com/questions/100871/in-a-bash-if-condition-how-to-check-whether-any-files-matching-a-simple-wildcard
if [ 0 -lt "$(ls $HOME/doc/*.kdbx 2>/dev/null | wc -w)" ]; then
rclone copy "$HOME/doc" google-drive: --include "*.kdbx"
rclone copy "$HOME/doc" google-drive: --include "*.kdbx.key"
else
echo "Password database not found, use 'rclone copy google-drive:passwd.kdbx $HOME/doc/passwd.kdbx' to restore"
echo "No password database found, use the following commands to restore"
echo ""
echo "rclone copy google-drive: \"$HOME/doc\" --include \"*.kdbx\""
echo "rclone copy google-drive: \"$HOME/doc\" --include \"*.kdbx.key\""
exit 1
fi