#!/usr/bin/env bash # This is script04. There are 2 copies of script04, one in a sub-dir # and one at the root level. They both need to be usable! # This one is in the sub-dir. # This is the comment for script04_function01, in some_sub_dir script04_function01() { echo "hello from script04_function01, in some_sub_dir" } # This is the comment for script04_function02, in some_sub_dir script04_function02() { echo "hello from script04_function02, in some_sub_dir" }