diff --git a/shellcheck/test.sh b/shellcheck/test.sh new file mode 100644 index 0000000..9ae83f0 --- /dev/null +++ b/shellcheck/test.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +name="world" + +echo Hello $name + +for file in $(ls *.txt) +do + echo $file +done + +read input +echo You typed $input +