This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
hello-world/sh.sh

6 lines
67 B
Bash
Executable File

#!/bin/sh
for i in $(seq 0 5); do
echo "Hello world, $i"
done