On Sat, Aug 1, 2020 at 2:48 AM Daniel LaFlamme <daniel.lafla...@gmail.com> wrote:
> Is there a way to change the behavior of how those subdirectories are named? > Either a sequential number is fine, or something else? In version >= 20170122 you can use replacement strings: parallel --joblog v.1.log --results 'mydir/{= s:.*class:: =}' :::: v.1.sh parallel --joblog v.1.log --results '{#}/' :::: v.1.sh See 'man parallel' under '--results' for more details. /Ole