What is the use of pipes?
Answers were Sorted based on User's Feedback
Answer / shilpa
Output of one command can be used as input for other
command. Hence execution time will be reduced
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / abinash
its is used to sned the output of one unix command as
inpiut to another unix command.
e.g.
ps -aef | grep <process name>
| Is This Answer Correct ? | 4 Yes | 1 No |
Pipe command is used sending one command's output to other command input
ex:- ls -l | wc -l
here ls -l will show details of files available and wc -l will show how many rows(total no of rows) the previous command diaplayed
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you know about running processes of a particular user?
What is “chmod” command?
What are filter commands in unix?
How do you list the files in an UNIX directory while also showing hidden files?
what is the cmd to display the last exit status in UNIX?
What is used to type command?
Which command is used to restrict incoming messages?
Why is shebang used?
in a growing log file how will you see the 1st 99 lines?
What do chown command do?
what is ls -ltd?
How to view the hidden files in /etc directory?