在bash上,您可以在脚本中使用set -e以便在出错时退出:
set -e cd unexisting-folder echo "this line will not be printed"
但是在鱼壳上设置-e用于删除变量:
set FOO bar set -e FOO echo {$FOO} # prints newline
什么相当于Bash set -e on Fish?
在鱼类中没有相当的东西.
https://github.com/fish-shell/fish-shell/issues/805花了一点时间讨论这可能是什么样的鱼腥味.
原文链接:/bash/384928.html如果脚本很短,则为每行添加前缀,但可能不会太糟糕:
cp file1 file2 and rm file1 and echo File moved