aaa/lib/util.sh
2024-06-06 02:01:36 +02:00

9 lines
No EOL
143 B
Bash

#!/bin/sh
require_value() {
local name=$1; shift
if [ -z "$@" ]; then
echo "expected value for: $name"
exit 1
fi
}