浏览代码

bash: add -e option (#2723)

Quentin Duchemin 6 年之前
父节点
当前提交
c3d16cdf9a
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      pages/common/bash.md

+ 4 - 0
pages/common/bash.md

@@ -19,6 +19,10 @@
 
 `bash -x {{file.sh}}`
 
+- Run commands from a file, stopping at the first error:
+
+`bash -e {{file.sh}}`
+
 - Run commands from STDIN:
 
 `bash -s`