6 lines
65 B
Bash
6 lines
65 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
for i in {0..5}; do
|
||
|
echo "Hello world, $i"
|
||
|
done
|