如何处理错误“班次计数必须<= $#”在Zsh?
我想构建一个像这样的命令参数:
$ command <args> <parameter>
$ cut -d ' '
构建命令的代码是这样写的:
function command(){
if [ "$#" -gt 0 ]; then
while [ "$#" -gt 0 ]; do
case "$1" in
'-t'|'--type')
type_parameter=$2
shift 2
;;
* )
shift 1
;;
esac
done
fi
}
我想检测如果在特殊
之后没有任何参数存在,那么我可以编写错误处理代码。
$ command -t 123 # this is the input value I want.
good input!!
$ command -t # I want to detect this situation happen.
wrong input!!
但现在我遇到了错误:
$ command -t
command:shift:101: shift count must be <= $#
我不知道如何解决这个问题,有什么办法可以完美地处理或避免它吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单地通过测试参数的数量。您可以执行类似的操作,而不是无条件地执行
shift 2
,这将允许您打印自己的错误消息。当然,如果您不想将缺少的选项参数视为错误,您也可以从循环中退出(因为您知道无论如何都不会剩下任何参数)。
Simply by testing the number of parameters. Instead of doing a
shift 2
unconditionally, you can do something likeThis would allow you to print your own error message. Of course, if you don't want to treat the missing option argument as an error, you can also break out from the loop (since you know that there won't be any arguments left anyway).