What is the difference between pipe and xargs?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / amit kumar pradhan
Pipe is used to connect between two command
Xargs redirect the output of second command to the first one
| Is This Answer Correct ? | 9 Yes | 4 No |
What are Unix processes, and how do you manage them?
How do you list the files in an UNIX directory while also showing hidden files?
Give command that will make the file "run.sh" executable?
what is kernel?
What is the functionality of a top command?
hw will u use awk in replacing cahrs and files
Explain mount and unmount command.
What is the use of the command 'ls -x chapter[1-5]' ?
How can you copy files or directories?
Who invented grep?
29. How to display top 10 users Who | head -10 | wc –w
Write a command to kill the last background job?