From 9ca42f7b9089043ab19665252da2cb0881664743 Mon Sep 17 00:00:00 2001 From: koalaman Date: Sat, 1 Jul 2017 15:53:37 -0700 Subject: [PATCH] Updated SC2095 (markdown) --- SC2095.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SC2095.md b/SC2095.md index ceb32f6..296d824 100644 --- a/SC2095.md +++ b/SC2095.md @@ -25,7 +25,9 @@ Commands that process stdin will compete with the `read` statement for input. Th The most common symptom of this is a `while read` loop only running once, even though the input contains many lines. This is because the rest of the lines are swallowed by the offending command. -To refuse such commands input, redirect their stdin with `< /dev/null`. +To refuse such commands input, redirect their stdin with `< /dev/null`. + +You can also use command specific options like `ssh -n` and `mplayer -noconsolecontrols`. ### Exceptions: