Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)

share|improve this question

2 Answers

up vote 27 down vote accepted

Speed difference will be insignificant.

But you have to make sure that:

  1. Your script will not assume that no file will have no space, tab, etc in file name; the first version is safe, the second is not.

  2. Your script will not treat a file starting with "-" as an option.

So your code should look like this:

find . -exec cmd -option1 -option2 -- {} +

or

find . -print0 | xargs -0 cmd -option1 -option2 --

The first version is shorter and easier to write as you can ignore 1, but the second version is more portable and safe, as "-exec cmd {} +" is a relatively new option in GNU findutils (since 2005, lots of running systems will not have it yet) and it was buggy recently. Also lots of people do not know this "-exec cmd {} +", as you can see from other answers.

share|improve this answer
-print0 is also a GNU find (and GNU xargs) option which is missing from a lot of non-Linux systems, so the portability argument isn't as valid. Using just -print and leaving the -0 off of xargs, however, is very portable. – dannysauer May 27 '09 at 20:30
The point is that without -print0 it does not work if there is a file with a space or tab etc. This can be a security vulnerability as if there is a filename like "foo -o index.html" then -o will be treated as an option. Try in empty directory: "touch -- foo\ -o\ index.html; find . | xargs cat". You'll get: "cat: invalid option -- 'o'" – Tometzky May 28 '09 at 7:22
2  
You're quite right about always using -print0. Using find piped to xargs without using "-print0" is a menace, and anyone who does so should have their Unix license suspended. On the other hand, every version of find that I have ever used, precedes filenames with "./" if you are operating on the current directory, so there is no need to worry about filenames that begin with "-". – Douglas Dec 20 '11 at 15:45
His example is a filename that contains a -. Without -print0, find will spit out ./foo -o index.html. So maybe starting with a - isn't a big deal, but the result is little changed, and on a multiuser system, could provide an attack vector if your script is world readable. – bobpaul Feb 2 '12 at 17:47
find . | xargs cmd

is more efficient (it runs cmd as few times as possible, unlike exec, which runs cmd once for each match). However, you will run into trouble if filenames contain spaces or funky characters.

The following is suggested to be used:

find . -print0 | xargs -0 cmd

this will work even if filenames contain funky characters (-print0 makes find print NULL-terminated matches, -0 makes xargs expect this format.)

share|improve this answer
7  
This is not "find . -exec cmd {} \;" but "find . -exec cmd {} +". The latter will not run one file at a time. – Tometzky May 22 '09 at 8:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.