bartender/test.sh

8 lines
82 B
Bash
Executable file

#!/usr/bin/env bash
i=0
while [ $i -le 100 ]; do
printf "line\n"
sleep 1
done