6 lines
67 B
Bash
Executable File
6 lines
67 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in $(seq 0 5); do
|
|
echo "Hello world, $i"
|
|
done
|