我正在使用 bash。如果我的脚本的参数数量错误,我如何以不成功的代码退出?
我有这个
#!/bin/bash
if [ "$#" -ne 3 ]; then
echo "Should be three parameters to this script -- [CWD driver-directory side-file]"
fi
但随后脚本继续。
我正在使用 bash。如果我的脚本的参数数量错误,我如何以不成功的代码退出?
我有这个
#!/bin/bash
if [ "$#" -ne 3 ]; then
echo "Should be three parameters to this script -- [CWD driver-directory side-file]"
fi
但随后脚本继续。
你只需要打电话
exit
:使用您喜欢或想要的 1 到 255 之间的任何非负整数。