mirror of
https://github.com/foo-dogsquared/wiki.git
synced 2025-02-07 18:19:35 +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"
|