summaryrefslogtreecommitdiff
path: root/gemfeed/2022-01-01-bash-golf-part-2.html
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-01 17:45:51 +0200
committerPaul Buetow <paul@buetow.org>2026-03-01 17:45:51 +0200
commita2f3245832307601c43a3760953653deb482f816 (patch)
treef90d7b1d841ab657bb572641444590f5c053353d /gemfeed/2022-01-01-bash-golf-part-2.html
parent834fe24994705a517c368b5810cd056ac0df41e2 (diff)
Update content for html
Diffstat (limited to 'gemfeed/2022-01-01-bash-golf-part-2.html')
-rw-r--r--gemfeed/2022-01-01-bash-golf-part-2.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/gemfeed/2022-01-01-bash-golf-part-2.html b/gemfeed/2022-01-01-bash-golf-part-2.html
index 07335dbf..b8c77be3 100644
--- a/gemfeed/2022-01-01-bash-golf-part-2.html
+++ b/gemfeed/2022-01-01-bash-golf-part-2.html
@@ -362,7 +362,7 @@ Second line: for Great Good
-e Exit immediately if a command exits with a non-zero status.
</pre>
<br />
-<span>As you can see in the following example, the Bash terminates after the execution of "grep" as "foo" is not matching "bar". Therefore, grep exits with 1 (unsuccessfully) and the shell aborts. And therefore, "bar" will not be printed out anymore:</span><br />
+<span>As you can see in the following example, the Bash terminates after the execution of "grep" as "foo" is not matching "bar". Therefore, grep exits with 1 (unsuccessfully) and the shell aborts. And therefore, "bar" will not be printed out anymore:</span><br />
<br />
<pre>
❯ bash -c &#39;set -e; echo hello; grep -q bar &lt;&lt;&lt; foo; echo bar&#39;