Forrest logo
back to the pueue tool

pueue-status:tldr:cb5b3

pueue-status: Show the status of a specific group.
$ pueue status --group ${group_name}
try on your machine

The command "pueue status --group ${group_name}" is used to obtain the current execution status of all the tasks within a specific group in the Pueue task manager.

Here's a breakdown of the command:

  • "pueue" refers to the Pueue command-line tool or executable.
  • "status" is the specific action or subcommand within Pueue used to fetch the current status.
  • "--group" is an option or flag that specifies that you want to filter the status by a particular group.
  • "${group_name}" is a placeholder for the actual name of the group you want to get the status for. Replace it with the desired group name.

When you execute this command, Pueue will display information about all the tasks within the specified group, including their respective statuses, such as running, paused, or finished. This is useful for monitoring the progress of group-specific tasks in your task queue.

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