Which one is more efficient over a very large set of files and should be used?
find . -exec cmd {} +
or
find . | xargs cmd
(Assume that there are no funny characters in the filenames)
|
Which one is more efficient over a very large set of files and should be used?
or
(Assume that there are no funny characters in the filenames) |
||||
|
|
|
Speed difference will be insignificant. But you have to make sure that:
So your code should look like this:
or
The first version is shorter and easier to write as you can ignore 1, but
the second version is more portable and safe, as " |
|||||||||||
|
is more efficient (it runs The following is suggested to be used:
this will work even if filenames contain funky characters ( |
|||||
|