7 lines
62 B
Bash
Executable File
7 lines
62 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for i in {1..30}
|
|
do
|
|
echo "yes"
|
|
sleep 0.3
|
|
done |