# will be sourced from using shell scripts, # so NOT the usual first line... # funct-return.sh # a function that displays its arguments and # then *returns* with an exit status of 13 # (to show that a script that calls this # can see that returned exit status by using # $? ) # # by: Sharon Tuttle # last modified: 2022-11-30 funct_that_returns() { echo "funct_that_returns: I was called with arguments: $@" echo "funct_that_returns: I'm about to return! with exit status 13" return 13 }