3 lines
59 B
Bash
3 lines
59 B
Bash
|
#!/bin/sh
|
||
|
for i in 1 2 3 4 5; do echo 'moo'; sleep 2; done
|