initial commit

This commit is contained in:
Fabio Scotto di Santolo
2020-07-28 19:28:25 +02:00
commit 4cc88d2f6e
245 changed files with 22820 additions and 0 deletions

21
chapter27/function_run_all Executable file
View File

@@ -0,0 +1,21 @@
run_all ()
{
# This function runs all of the backups defined in
# the Dirvish master configuration file stanza "Runall:"
clear # Clear the screen
echo -e "\n\n"
# Execute all master.conf defined backups
dirvish-runall
if (( $? == 0 ))
then
echo -e "\n\tBackups Complete...Press Enter to Continue...\c"
else
echo -e "\n\tDirvish Backup ERROR...Press Enter to Continue...\c"
fi
read KEY
}