5 lines
89 B
Bash
5 lines
89 B
Bash
echo "begin script"
|
|
while [ 1 ]
|
|
do sleep 1 ; echo "hello 42sh"
|
|
done
|
|
echo "end script"
|