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

6 lines
65 B
Bash
Executable File

#!/bin/bash
for i in {0..5}; do
echo "Hello world, $i"
done