Forrest logo
back to the pueue tool

pueue-enqueue:tldr:1949d

pueue-enqueue: Enqueue a stashed task after four months.
$ pueue enqueue --delay "4 months" ${task_id}
try on your machine

This command is used to enqueue a task in the Pueue task manager with a specific delay.

Here's the breakdown of each component of the command:

  • pueue enqueue: This is the command to enqueue (add) a task to the Pueue task manager.
  • --delay "4 months": This flag sets a specified delay before the task is executed. In this case, the delay is set to "4 months", indicating that the task will be executed after a period of 4 months.
  • ${task_id}: This is a placeholder for the ID or name of the task that you want to enqueue. Replace ${task_id} with the actual ID or name of the task you wish to enqueue.

Overall, this command will enqueue a task in the Pueue task manager, setting a delay of 4 months before execution. Once the specified delay has passed, the task will be executed.

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