pueue-remove

Remove tasks from the pueue queue

TLDR

Remove task
$ pueue remove [task_id]
Remove multiple tasks
$ pueue remove [id1] [id2]
Force remove running task
$ pueue kill [task_id] && pueue remove [task_id]

SYNOPSIS

pueue remove [options] taskids_

DESCRIPTION

pueue remove deletes specific tasks from the pueue queue by their task IDs. Only queued, stashed, or finished tasks can be removed; running tasks must be killed first with pueue kill before removal. Use pueue clean to bulk-remove all finished tasks instead.

PARAMETERS

TASKIDS_

Tasks to remove.

INSTALL

sudo pacman -S pueue
sudo apk add pueue
sudo zypper install pueue
brew install pueue
nix profile install nixpkgs#pueue

CAVEATS

Running tasks cannot be removed directly; use pueue kill first. Removing a task deletes its log output permanently.

SEE ALSO

pueue(1), pueue-clean(1), pueue-kill(1)