What is "Piping"?
Pipe accepts the output of one command, and feeds it as an input to the next command.
eg: ls | wc -l
Output of 'ls' is fed as input to wc-l. Hence wc counts the number of lines in the result of ls.
-
Interview Candidate
- Nov 4th, 2005
- 1
- 2427
Showing Answers 1 - 1 of 1 Answers
Related Answered Questions
What is "Piping"?
eg: ls | wc -l
Output of 'ls' is fed as input to wc-l. Hence wc counts the number of lines in the result of ls.
Related Answered Questions