소스 검색

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`