diff options
-rw-r--r-- | bash.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -52,14 +52,15 @@ It doesn't affect expansion (see below) though. # An insightful discussion on the topic: https://lists.gnu.org/archive/html/help-bash/2016-09/msg00020.html. -### `errexit` +`errexit` +--------- -#### Do +### Do bar_output="$( bar )" foo "$bar_output" -#### Don't +### Don't foo "$( bar )" # With `errexit`, foo will still get executed. # I don't know why. |