7 lines
84 B
Plaintext
Executable File
7 lines
84 B
Plaintext
Executable File
if [ $# -lt 1 ]; then
|
|
echo "${1:#missing arguments}"
|
|
exit 1
|
|
else
|
|
${2:#action}
|
|
fi
|