我有一个fish shell脚本,其默认行为是在完成后发送电子邮件。我想修改它以响应命令行中的nomail
参数。因此,例如,正常运行脚本会产生一封电子邮件:
michaelmichael: ~/bin/myscript
但如果使用nomail
开关运行,则不会发送确认电子邮件:
michaelmichael: ~/bin/myscript nomail
如果我使用nomail
参数运行脚本,它运行正常。如果没有nomail
,$argv
未定义,则会引发错误。我已经搜索了鱼壳文档,但似乎找不到任何可行的东西。这是我到目前为止所拥有的
switch $argv
case nomail
## Perform normal script functions
case ???
## Perform normal script functions
mailx -s "Script Done!"
end
运行此命令会引发以下错误:
switch: Expected exactly one argument, got 0
显然它需要一个参数,我只是不知道告诉它不接受任何参数的语法,或者它是否存在的语法。
我猜这是非常基本的,但我只是不太了解shell脚本。
答案 0 :(得分:9)
像这样包装你的switch
声明:
if set -q argv
...
end
另外,我认为您的默认情况应为case '*'
。
答案 1 :(得分:6)
如果您更喜欢使用switch语句,也可以:
switch (echo $argv)
case nomail
## Perform normal script functions
case '*'
## Perform normal script functions
mailx -s "Script Done!"
end