鱼壳:如何退出错误(bash set -e)

时间:2013-11-09 12:38:14

标签: bash shell error-handling fish

在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相当于什么?

1 个答案:

答案 0 :(得分:11)

在鱼类中没有相当于此的东西。 https://github.com/fish-shell/fish-shell/issues/805花一点时间讨论这可能是什么样的鱼腥味。

如果脚本很短,那么为每行添加and前缀可能不会太糟糕:

cp file1 file2
and rm file1
and echo File moved