What is the difference between pipe and xargs?
Answer Posted / shh
xargs command
Build and execute command lines from standard input
find . -type f -mtime -1 -print | xargs ls
Pipe is a technique to use for joining two/more commands
(one command output as input to other command ..so on
| is a symobol for pipe)
ls -al | more
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
Using unix command how to display no of records in oracle?
How does shebang work?
How do I search for a file in unix command?
What do know about tee command and its usage?
What is the command to view process running?
Name the general commands in using unix os for a beginner?
What is rmdir command?
What is grep command in unix with examples?
What are the general commands in using unix os for a beginner?
Enlist some filename manipulation commands in unix.
Which command should you use to find the remaining disk space in unix server?
Who invented grep?
How can we use grep command in unix?
Explain command to display different lines that are found when compare two files?
What is pipe command in unix?