Files
freeplanet_serverside/scripts/restore_backup_all.sh

9 lines
226 B
Bash
Raw Normal View History

2022-08-01 15:49:27 +02:00
#!/bin/bash
read -p "*** RIPRISTINO BACKUP ! -------- SEI SICURO DI CANCELLARE TUTTO ??? (Y/N) ? " risposta
if [[ $risposta == "Y" || $risposta == "y" ]]; then
cd /
sudo tar -xzvf /mnt/backup/freeplanet-Sunday.tgz
fi