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