#!/bin/bash

# A shell script must:
# 1) have the "shebang" line above as the first line
# 2) be made executable using "chmod +x" command

for i in {1..4}
do
    echo hi
done
