mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
35 lines
793 B
Plaintext
35 lines
793 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pueue enqueue
|
|
|
|
> Enqueue stashed tasks.
|
|
> See also: `pueue stash`.
|
|
> More information: <https://github.com/Nukesor/pueue#how-to-use-it>.
|
|
|
|
- Enqueue multiple stashed tasks at once:
|
|
|
|
`pueue enqueue {{task_id}} {{task_id}}`
|
|
|
|
- Enqueue a stashed task after 60 seconds:
|
|
|
|
`pueue enqueue {{[-d|--delay]}} {{60}} {{task_id}}`
|
|
|
|
- Enqueue a stashed task next Wednesday:
|
|
|
|
`pueue enqueue {{[-d|--delay]}} {{wednesday}} {{task_id}}`
|
|
|
|
- Enqueue a stashed task after four months:
|
|
|
|
`pueue enqueue {{[-d|--delay]}} "4 months" {{task_id}}`
|
|
|
|
- Enqueue a stashed task on 2021-02-19:
|
|
|
|
`pueue enqueue {{[-d|--delay]}} {{2021-02-19}} {{task_id}}`
|
|
|
|
- List all available date/time formats:
|
|
|
|
`pueue enqueue {{[-h|--help]}}`
|