Forrest logo
back to the pueue tool

pueue-kill:tldr:d7def

pueue-kill: Kill all tasks in a group and pause the group.
$ pueue kill --group ${group_name}
try on your machine

The command "pueue kill --group ${group_name}" is used to kill all the running processes within a specific group in the Pueue task manager.

Here's an explanation of the different parts of the command:

  • "pueue" is the name of the command-line tool or program being executed.
  • "kill" is the subcommand that instructs the tool to terminate running processes.
  • "--group" is an option or flag used to specify that the command will target a specific group of processes.
  • "${group_name}" is a placeholder that should be replaced with the actual name of the group you want to kill.

By running this command and providing the name of an existing group after the "--group" option, all processes within that group will be terminated or killed. This is useful when you want to stop all the processes related to a particular task or job at once.

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