HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pueue restart — Restart tasks. More information: <https://github.com/Nukesor/pueue#how-to-use-it>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
httpscommandrestartclimoreinformationpueue restarttasks

Problem

How to use the pueue restart command: Restart tasks. More information: <https://github.com/Nukesor/pueue#how-to-use-it>.

Solution

pueue restart — Restart tasks. More information: <https://github.com/Nukesor/pueue#how-to-use-it>.

Restart a specific task:
pueue restart {{task_id}}


Restart multiple tasks at once, and start them immediately (do not enqueue):
pueue restart {{[-k|--immediately]}} {{task_id}} {{task_id}}


Restart a specific task from a different path:
pueue restart --edit-path {{task_id}}


Edit a command before restarting:
pueue restart {{[-e|--edit]}} {{task_id}}


Restart a task in-place (without enqueuing as a separate task):
pueue restart {{[-i|--in-place]}} {{task_id}}


Restart all failed tasks and stash them:
pueue restart {{[-a|--all-failed]}} --stashed

Code Snippets

Restart a specific task

pueue restart {{task_id}}

Restart multiple tasks at once, and start them immediately (do not enqueue)

pueue restart {{[-k|--immediately]}} {{task_id}} {{task_id}}

Restart a specific task from a different path

pueue restart --edit-path {{task_id}}

Edit a command before restarting

pueue restart {{[-e|--edit]}} {{task_id}}

Restart a task in-place (without enqueuing as a separate task)

pueue restart {{[-i|--in-place]}} {{task_id}}

Context

tldr-pages: common/pueue restart

Revisions (0)

No revisions yet.