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 |
Why is it called a shebang?
What is the comma to show the space allocation of files?
Name the unix command to find how many days the server has been up.
How to copy multiple files and directories into some other directory?
What are reported commands?
what these two commands prints "echo test","cat test"?
what do you understand by 'unix is a portable os'?
What is the use of touch command in there?
Is ‘du’ a command? If so, what is its use?
Describe the zip/unzip command using gzip.
what is the command to find out which shell you are running?
What is the first character of the output in ls l command?