#!/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 /dragas/generate_html.sh $MIN > /tmp/dragas/index.html MIN=$((MIN-1)); sleep 59; done