bartender/test.sh

10 lines
104 B
Bash
Raw Normal View History

#!/usr/bin/env bash
i=0
while [ $i -le 30 ]; do
printf '%s line\n' "$i"
i=$((i + 1))
sleep .1
done