↧
Answer by madneon for Check if a screen is active and then display countdown
Do you want to do some countdown, while screen is active? If so, you could change your if and for with while loop, like this: while (screen -list backup|grep -q backup); do # delay sleep 1 # display...
View ArticleCheck if a screen is active and then display countdown
#!/bin/bash DATE=$(date +"%m-%d-%Y") Backup_from="/home/mc/server/prison/" Backup_to="/home/mc/backups/PRISON-$DATE.tar" echo "Starting backup of $Backup_from to $Backup_to" screen -dmS backup tar...
View Article