help-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Help-bash] hi, doubt about xargs


From: Joaquin Villanova
Subject: [Help-bash] hi, doubt about xargs
Date: Mon, 13 May 2013 12:09:13 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130428 Thunderbird/17.0.5

Hi, i want to convert all my existing pdf documents to djvu (just to give a brief intro) then i decided to use bash shell and find / xargs, so i executed the following
find ~/ -name '*pdf*' -print0 | xargs -0  -n 1 pdf2djvu -i '{}' -o '{}'

In pdf2djvu -i goes for input and -o for output. The issue here is that i want to get the output to the same directories to the inputfile, but with this order all what i get is one output file only, thanks in advance!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]