From d89190177c33a9dcb0737dcd28a7c9781e8e668a Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 5 Jan 2022 21:58:27 +0000 Subject: Publishing new version --- gemfeed/2022-01-01-bash-golf-part-2.html | 12 ++++++++++-- gemfeed/atom.xml | 14 +++++++++++--- gemfeed/index.html | 2 +- 3 files changed, 22 insertions(+), 6 deletions(-) (limited to 'gemfeed') diff --git a/gemfeed/2022-01-01-bash-golf-part-2.html b/gemfeed/2022-01-01-bash-golf-part-2.html index a90a980d..c21ab180 100644 --- a/gemfeed/2022-01-01-bash-golf-part-2.html +++ b/gemfeed/2022-01-01-bash-golf-part-2.html @@ -19,7 +19,7 @@ jgs^^^^^^^`^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Art by Joan Stark, mod. by Paul Buetow -

Published by Paul Buetow 2022-01-01

+

Published by Paul Buetow 2022-01-01, last updated 2022-01-05

This is the second blog post about my Bash Golf series. This series is random Bash tips, tricks and weirdnesses I came across. It's a collection of smaller articles I wrote in an older (in German language) blog, which I translated and refreshed with some new content.

Bash Golf Part 1
Bash Golf Part 2 (you are reading this atm.)
@@ -56,7 +56,15 @@ Foo ❯ echo Foo 1>&2 2>/dev/null Foo -

This is where you can use grouping (neither of these commands will print out anything to stdout):

+

Update: A reader sent me an email and pointed out that the order of the redirections is important.

+

As you can see, the following will not print out anything:

+
+❯ echo Foo 2>/dev/null 1>&2
+❯
+
+

A good description (also pointe out by the reader) can be found here:

+Order of redirection
+

Ok, back to the original blog post. You can also use grouping here (neither of these commands will print out anything to stdout):

 ❯ { echo Foo 1>&2; } 2>/dev/null
 ❯ ( echo Foo 1>&2; ) 2>/dev/null
diff --git a/gemfeed/atom.xml b/gemfeed/atom.xml
index 73fd6b3f..12b91ecb 100644
--- a/gemfeed/atom.xml
+++ b/gemfeed/atom.xml
@@ -1,6 +1,6 @@
 
 
-    2022-01-05T21:44:28+00:00
+    2022-01-05T21:58:12+00:00
     snonux.de feed
     Having fun with computers!
     
@@ -30,7 +30,7 @@
 jgs^^^^^^^`^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                         Art by Joan Stark, mod. by Paul Buetow
 
-

Published by Paul Buetow 2022-01-01

+

Published by Paul Buetow 2022-01-01, last updated 2022-01-05

This is the second blog post about my Bash Golf series. This series is random Bash tips, tricks and weirdnesses I came across. It's a collection of smaller articles I wrote in an older (in German language) blog, which I translated and refreshed with some new content.

Bash Golf Part 1
Bash Golf Part 2 (you are reading this atm.)
@@ -67,7 +67,15 @@ Foo ❯ echo Foo 1>&2 2>/dev/null Foo -

This is where you can use grouping (neither of these commands will print out anything to stdout):

+

Update: A reader sent me an email and pointed out that the order of the redirections is important.

+

As you can see, the following will not print out anything:

+
+❯ echo Foo 2>/dev/null 1>&2
+❯
+
+

A good description (also pointe out by the reader) can be found here:

+Order of redirection
+

Ok, back to the original blog post. You can also use grouping here (neither of these commands will print out anything to stdout):

 ❯ { echo Foo 1>&2; } 2>/dev/null
 ❯ ( echo Foo 1>&2; ) 2>/dev/null
diff --git a/gemfeed/index.html b/gemfeed/index.html
index 188798c8..840035ce 100644
--- a/gemfeed/index.html
+++ b/gemfeed/index.html
@@ -9,7 +9,7 @@
 
 

snonux.de's Gemfeed

Having fun with computers!

-2022-01-01 (1077 words) - Bash Golf Part 2
+2022-01-01 (1134 words) - Bash Golf Part 2
2021-12-26 (2101 words) - How to stay sane as a DevOps person
2021-11-29 (1281 words) - Bash Golf Part 1
2021-10-22 (2276 words) - Defensive DevOps
-- cgit v1.2.3