mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 19:57:57 +00:00
11 lines
150 B
Bash
Executable File
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"
|