InterviewSolution
Saved Bookmarks
| 1. |
What is pipe? |
|
Answer» In Linux, a pipe is basically a form of REDIRECTION that is used to send the output of one COMMAND to another command for further processing. It simply takes the output from one command and USES it as an input for another. It provides asynchronous execution of commands with help of BUFFERED I/O routines. |
|