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