bashTimeUtils/chrono

17 lines
121 B
Plaintext
Raw Normal View History

2020-07-30 08:24:19 +02:00
#! /bin/sh
i=0
while true
do
clear
echo $i
((i++))
read -t 1 -n 1
if [[ $? = 0 ]]
then
clear
exit 0
fi
done