From a3c0a363d27d196bb8489fbaa8fd073f6a7a1610 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 2 Jun 2017 08:20:07 +0300 Subject: bash.md: update --- bash.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/bash.md b/bash.md index b50b2fa..4856716 100644 --- a/bash.md +++ b/bash.md @@ -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. -- cgit v1.2.3