Skip to content
Vidar Holen edited this page Oct 4, 2015 · 3 revisions

echo doesn't read from stdin, are you sure you should be piping to it?

Problematic code:

find . | echo

Correct code:

find .

Rationale:

You are piping command output to echo, but echo ignores all piped input.

In particular, echo is not responsible for putting output on screen. Commands already output data, and with no further actions that will end up on screen.

Exceptions:

None.

ShellCheck

Each individual ShellCheck warning has its own wiki page like SC1000. Use GitHub Wiki's "Pages" feature above to find a specific one, or see Checks.

Clone this wiki locally