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