vote up 4 vote down star

I'm trying to construct a find command to process a bunch of files in a directory using two different executables. Unfortunately, -exec on find doesn't allow to use pipe or even \| because the shell interprets that character first.

Here is specifically what I'm trying to do (which doesn't work because pipe ends the find command):

find /path/to/jpgs -type f -exec jhead -v {} | grep 123 \; -print
flag

75% accept rate

4 Answers

vote up 4 vote down check

Try this

find /path/to/jpgs -type f -exec sh -c 'jhead -v {} | grep 123 \; -print' \;

Alternatively you could try to embed your exec statement inside a sh script and then do:

find -exec some_script {} \;
link|flag
That works for me. Thanks. – hoyhoy Sep 15 '08 at 9:57
Great to hear that. Good luck! – Martín Marconcini Sep 15 '08 at 10:10
@Martin: you placed the closing apostrophe at the end of "-print", when it should be at the end of "123", and then the last "\;" is not needed. – ΤΖΩΤΖΙΟΥ Oct 11 '08 at 23:11
vote up 0 vote down

As this outputs a list would you not :

find /path/to/jpgs -type f -exec jhead -v {} \; | grep 123

or

find /path/to/jpgs -type f -print -exec jhead -v {} \; | grep 123

Put your grep on the results of the find -exec.

link|flag
That doesn't work because I need the -print to work. If grep returns a success, then find prints the file name, otherwise it doesn't. – hoyhoy Sep 15 '08 at 9:54
vote up 2 vote down

With -exec you can only run a single executable with some arguments, not arbitrary shell commands. To circumvent this, you can use sh -c '<shell command>'.

Do note that the use of -exec is quite inefficient. For each file that is found, the command has to be executed again. It would be more efficient if you can avoid this. (For example, by moving the grep outside the -exec or piping the results of find to xargs as suggested by Palmin.)

link|flag
Indeed that does work. Martin scooped you on the answer though. – hoyhoy Sep 15 '08 at 21:10
That's ok. I do think, however, that my comment on the (in)efficiency of -exec is also worth noting. – mweerden Sep 16 '08 at 11:18
Another way to avoid the multiple process inefficiency in the general case is to use xargs. If you happen to need separate processes, you can use the -i option. I find xargs more in keeping with the Unix model. – Jon Ericson Sep 17 '08 at 21:00
AOL on xargs use. mweerden, perhaps you should change your last paragraph by taking account of the xargs existence. Also note the -0 flag that exists in both find and xargs. – ΤΖΩΤΖΙΟΥ Oct 11 '08 at 23:14
vote up 2 vote down

A slightly different approach would be to use xargs:

find /path/to/jpgs -type f -print0 | xargs -0 jhead -v | grep 123

which I always found a bit easier to understand and to adapt (the -print0 and -0 arguments are necessary to cope with filenames containing blanks)

This might (not tested) be more effective than using -exec because it will pipe the list of files to xargs and xargs makes sure that the jhead commandline does not get too long.

link|flag
The problem with using xargs here is that I need the name of the file that matches. This command does find the matches, but I don't know which file matched. – hoyhoy Sep 15 '08 at 20:11

Your Answer

Get an OpenID
or

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