mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
99969c2baf
Seperate project coming soon
7 lines
110 B
Bash
7 lines
110 B
Bash
required_arg() {
|
|
if [ -z "$1" ]; then
|
|
echo "Required argument $2 missing"
|
|
exit 1
|
|
fi
|
|
}
|