Files
mastering-unix-ss/chapter4/function_dots
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

11 lines
110 B
Plaintext
Executable File

function dots
{
SEC=$1 # How many seconds between dots?
while true
do
sleep $SEC
echo ".\c"
done
}