LinuxCommandLibrary

pueue-enqueue

Move stashed tasks into the pueue queue

TLDR

Enqueue stashed task
$ pueue enqueue [task_id]
copy
Enqueue multiple tasks
$ pueue enqueue [id1] [id2] [id3]
copy
Enqueue with delay
$ pueue enqueue --delay "[30min]" [task_id]
copy

SYNOPSIS

pueue enqueue [options] taskids_

DESCRIPTION

pueue enqueue moves stashed tasks into the active queue for execution. Tasks that were added with --stashed or moved to stash with pueue stash can be activated with this command. An optional --delay defers execution by a specified duration.

PARAMETERS

TASKIDS_

Task IDs to enqueue.
--delay DURATION
Delay before execution.

CAVEATS

Tasks must be in the stashed state before they can be enqueued. Use pueue stash to stash running or queued tasks, or add tasks with pueue add --stashed to create them in the stashed state.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard