initial commit
This commit is contained in:
10
chapter4/function_dots
Executable file
10
chapter4/function_dots
Executable file
@@ -0,0 +1,10 @@
|
||||
function dots
|
||||
{
|
||||
SEC=$1 # How many seconds between dots?
|
||||
|
||||
while true
|
||||
do
|
||||
sleep $SEC
|
||||
echo ".\c"
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user