-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2008
Vidar Holen edited this page Oct 4, 2015
·
3 revisions
find . | echo
find .
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.
None.