From 9ea0d74be2b7b947e31f91cda00f14e0c10507f1 Mon Sep 17 00:00:00 2001 From: koalaman Date: Fri, 19 Jan 2018 18:37:10 -0800 Subject: [PATCH] Updated SC2069 (markdown) --- SC2069.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SC2069.md b/SC2069.md index 4f8c4f4..8d4541f 100644 --- a/SC2069.md +++ b/SC2069.md @@ -25,3 +25,8 @@ In other words, the problematic code hides stdout and shows stderr. The correct ### Exceptions If you want stderr as stdout and stdout to a file, you can ignore this message. + +### Related resources: + +* [Bash Pitfalls: somecmd 2>&1 >>logfile](https://mywiki.wooledge.org/BashPitfalls#pf43) +* [BashFaq: Tell me all about 2>&1 -- what's the difference between 2>&1 >foo and >foo 2>&1, and when do I use which?](https://mywiki.wooledge.org/BashFAQ/055)