On 02/28/2015 05:04 AM, Boris Goldowsky wrote:
Xargs is designed for this sort of thing.

        find / -type f -iname \*.pdf -print0 | xargs -0 -n1
/opt/pdfstudio9/pdfstudio9


For programs that accept more than one file on the command line, you can
drop the -n1.

Boris

Thank you!

Reply via email to