add tools/scroll.sh

This commit is contained in:
Boris Faure 2015-05-31 22:31:13 +02:00
parent e2853ab0a5
commit 4378f87162
1 changed files with 8 additions and 0 deletions

8
tools/scroll.sh Executable file
View File

@ -0,0 +1,8 @@
#/bin/bash
I=0
while [ 1 ]; do
sleep 1
echo $I
I=`expr $I + 1`
done