Forrest logo
back to the pueue tool

pueue-start:tldr:f1fa6

pueue-start: Resume all tasks and start their children.
$ pueue start --all --children
try on your machine

The command "pueue start --all --children" is used to start all tasks in a queue managed by the "pueue" command-line tool, including their child processes.

Here's a breakdown of the individual components of the command:

  • "pueue": This is the main command, which is followed by sub-commands like "start" to interact with the queue.
  • "start": This sub-command is used to start tasks in the queue.
  • "--all": This option is used to specify that the command should apply to all tasks in the queue, rather than just specific ones.
  • "--children": This option is used to specify that the command should also start any child processes associated with the tasks. Child processes are subprocesses spawned by the main task.

So, when you run "pueue start --all --children", it will start all tasks in the queue, including their child processes, if any.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pueue tool