mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-01-31 16:58:02 +00:00
11 lines
150 B
Bash
11 lines
150 B
Bash
|
#/usr/bin/env bash
|
||
|
function help() {
|
||
|
echo "Usage: error_handling.sh <person>"
|
||
|
}
|
||
|
|
||
|
if test ! $# -eq 1; then
|
||
|
help && exit 1
|
||
|
fi
|
||
|
|
||
|
echo "Hello, $1"
|