LinuxCommandLibrary

pueue-parallel

Run commands in parallel using a queue

TLDR

Set the maximum number of tasks allowed to run in parallel, in the default group

$ pueue parallel [max_number_of_parallel_tasks]
copy

Set the maximum number of tasks allowed to run in parallel, in a specific group
$ pueue parallel [[-g|--group]] [group_name] [maximum_number_of_parallel_tasks]
copy

SYNOPSIS

pueue-parallel [OPTIONS] [COMMAND_TEMPLATE]
(Reads commands from stdin, or uses COMMAND_TEMPLATE with input lines)

PARAMETERS

-j, --jobs
    Specify the number of commands to execute in parallel for this batch. This overrides Pueue's global concurrency limit for tasks added by this invocation.

-g, --group
    Assign the submitted tasks to a specific Pueue group. This helps in organizing and managing related tasks.

--command-template