COMS 3157 Advanced Programming

Index of 2024-1/code/16

Parent directory
hi4.sh

hi4.sh

#!/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