-
Notifications
You must be signed in to change notification settings - Fork 1.8k
”ErrorCode
tcweave04 edited this page Nov 14, 2024
·
3 revisions
##Solution #!/bin/bash
if ! grep -q "backup=true." "$HOME/.myconfig"
then
echo "Backup not enabled in $HOME/.myconfig, exiting"
exit 1
fi
if $1 =~ -v(erbose)?
then
verbose=(-printf "Copying %f\n")
fi
find backups/
-iname '.tar.gz'
"${verbose[@]}"
-exec scp {} 'myhost:backups' +