wiki/structured/assets/challenges.exercism.bash/error-handling.sh
2021-05-19 17:58:02 +08:00

11 lines
150 B
Bash
Executable File

#/usr/bin/env bash
function help() {
echo "Usage: error_handling.sh <person>"
}
if test ! $# -eq 1; then
help && exit 1
fi
echo "Hello, $1"