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

前端之家收集整理的这篇文章主要介绍了鱼壳:如何退出错误(bash set -e)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在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花了一点时间讨论这可能是什么样的鱼腥味.

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

cp file1 file2
and rm file1
and echo File moved
原文链接:/bash/384928.html

猜你在找的Bash相关文章