Linux command
pueue-add 命令
安全
权限或系统影响较大,执行前请核对目标。
常用示例
Add command to queue
pueue add [command]
Add with immediate start
pueue add -i [command]
Add to specific group
pueue add -g [group] [command]
Add with delay
pueue add --delay "10min" [command]
Add paused task
pueue add --stashed [command]
说明
pueue add adds a new command to the task queue. Commands are queued and executed in order. Supports task grouping, dependencies, priorities, and delayed execution.
参数
- -i, --immediate
- Start immediately.
- -g, --group _name_
- Add to group.
- --delay _duration_
- Delay before starting.
- --stashed
- Add as stashed (paused).
- -l, --label _label_
- Task label.
- -a, --after _ids_
- Start after other tasks.
- -p, --priority _n_
- Task priority.
FAQ
What is the pueue-add command used for?
pueue add adds a new command to the task queue. Commands are queued and executed in order. Supports task grouping, dependencies, priorities, and delayed execution.
How do I run a basic pueue-add example?
Run `pueue add [command]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -i, --immediate do in pueue-add?
Start immediately.