What is the difference between pipe (|) and tee command in unix
Answer Posted / manoj
Pipe command.
syntax :$command1|command2
Command1 output will be the input for command2
Eg:command1:echo$s
command2:wc
echo$s|wc
s=manoj is input of command1
Output for command2 is manoj
input of command 2 is manoj
output of pipe command is 5
Output:5
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the unix commands?
What are the general commands in using unix os for a beginner?
Which command is used to restrict incoming messages?
What does grep v grep do?
What is pipe command in unix?
What do know about tee command?
How many unix commands are there?
What is a bash command?
What are some command words?
What is the difference between awk and grep?
Is grep faster than awk?
What are grep patterns?
Write a command that will find all text files in a directory such that it does not contain the word "amazing" in any form (that is, it must include the words amazing, amazing, or amazing)?
What is the use of sed command in unix?
Explain command to display different lines that are found when compare two files?