terminology/tools/scroll.sh

9 lines
80 B
Bash
Executable File

#!/bin/bash
I=0
while [ 1 ]; do
sleep 1
echo $I
I=$(($I + 1))
done