what is the difference between pipe(|) and tee command..
Answer Posted / manoj gadtia
pipe direct output of one command to the input of another
command
ls -l | wc
tee command reads standard input, then writes the output
to standard output and simultaneously copies it into the
specified file or files
ls -l | wc -l | tee out.txt
It shows the output and also write the result into out.txt
file
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What are filter commands in unix?
What is the first character of the output in ls l command?
What does grep v grep do?
What does touch command do in unix?
How do I delete files from command prompt?
Which command is used to restrict incoming messages?
What are the general commands in using unix os for a beginner?
What is “chmod” command?
What are the dos commands?
What is awk used for?
What is the use of sed command in unix?
What is sed awk grep?
What is the comma to display different lines that are found when compare two files?
What is the use of find command in unix?
Give the command for finding the current date.