With xargs you can joing the output of one command to the input of another when a pipe doesn’t work. Check out this example:
find . -name .svn -print0 | xargs -0 rm -rf
With xargs you can joing the output of one command to the input of another when a pipe doesn’t work. Check out this example:
find . -name .svn -print0 | xargs -0 rm -rf
Leave a Reply
You must be logged in to post a comment.