This commit is contained in:
tofasthacker 2024-02-19 16:48:33 -05:00
commit 36921a5079

2
backup
View File

@ -29,7 +29,7 @@ tar -pcvf $BACKUP_LOCATION ./*.bak
while read folder; do while read folder; do
# list the contents of each folder # list the contents of each folder
echo -e "\e[32mbackingup: $folder" echo -e "\e[32mbackingup: $folder"
tar -rf $BACKUP_LOCATION $folder &>/dev/null tar -rfp $BACKUP_LOCATION $folder &>/dev/null
done < *.bak done < *.bak
echo "" echo ""