On Wed, Apr 09, 2014 at 03:12:40PM +0200, Alex Mestiashvili wrote:
> |
>  find . -name "*.png" | parallel -P8 convert -quality 95 {} -geometry 1280 
> /tmp/{.}.jpg|

Alternatively

find . -name "*.png" -exec convert -quality 95 {} -geometry 1280 /tmp/{}.jpg +

note '+' not '\;' which denotes to run jobs in parallel (here, not specifying
a max concurrency limit)


-- 
To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org 
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140409210324.ga21...@bryant.redmars.org

Reply via email to