mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
7 lines
110 B
Bash
7 lines
110 B
Bash
|
required_arg() {
|
||
|
if [ -z "$1" ]; then
|
||
|
echo "Required argument $2 missing"
|
||
|
exit 1
|
||
|
fi
|
||
|
}
|