parallel
[Top][All Lists]
Advanced

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

Re: Splitting input into jobs


From: Fredrick Brennan
Subject: Re: Splitting input into jobs
Date: Fri, 02 Apr 2021 23:09:19 -0400

Sorry to reply to myself yet again, but I figured out what to do, and discovered a bug in GNU Parallel in the process.


The reason it wasn't working for me originally is because I was attempting to mix -m and --bar. This does not work.


You must drop --bar to use -m. Then the equal distribution of the arguments will happen with e.g.:


⇒ find build/SVG_layers/ -iname '*.svg' | parallel -m 'inkscape --batch-process --actions "select-all:all;verb:StrokeToPath;select-all;verb:SelectionUnion;export-plain-svg;" --export-overwrite'


However, if you add --bar, it will not work, arguments are unequally distributed. I think this is a bug, but perhaps I just don't understand why it happens.


Best,

Fred Brennan



reply via email to

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