You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
205 B

7 years ago
#!/bin/sh
TOTSESSION=$1
MIN=$((TOTSESSION/60))
while [ $MIN -gt 0 ]; do
clear > /dev/tty9
echo "Sessione in corso..." > /dev/tty9
echo "Minuti rimanenti: $MIN" > /dev/tty9
MIN=$((MIN-1));
sleep 59;
done