I use the following in a UNIX Korn shell script
while [ i -lt $time ]; do
echo ".\c"
sleep 1
let i=i+1
done
It produces a ....... string to actively show the script is pausing.
This doesn't work with Bash. the result is
./c
./c
./c
etc
Is there an equivalent syntax for Bash?
while [ i -lt $time ]; do
echo ".\c"
sleep 1
let i=i+1
done
It produces a ....... string to actively show the script is pausing.
This doesn't work with Bash. the result is
./c
./c
./c
etc
Is there an equivalent syntax for Bash?