From 0fa9b2b2a70148d209e98e0ace31b8e85e33f614 Mon Sep 17 00:00:00 2001 From: "Matthew L. Curry" Date: Sun, 20 Oct 2019 20:34:35 +0000 Subject: [PATCH] Add -e (errexit) to debug flags. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e6d14d1..869de9e 100644 --- a/README.md +++ b/README.md @@ -875,6 +875,7 @@ These options are settings that change shell behavior. The following table is a | `-t` | — | Exit after first command. | | `-v` | verbose | Print each command to `stderr` before executing it. | | `-x` | xtrace | Print each command and its expanded arguments to `stderr` before executing it. | +| `-e` | errexit | Immediately exit when a command returns a non-zero status. | For example, we have script with `-x` option such as: