8
在bash,那麼你可以爲了使用set -e
一個腳本中退出的錯誤:魚貝:如何在錯誤退出(bash中集-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
魚的Bash set -e
的等效物是什麼?