Question
-
Topic
-
How to use xargs with find
I have a large number of files on disk and trying to xargs with find to get faster output. find . -printf ‘%m %p\n’|sort -nr
If I write find . -printf ‘%m %p\n’|xargs -0 -P 0 sort -nr, it gives error argument line is too long. Removing -0 option gives other error.
All Answers
Viewing 1 reply thread