Forrest logo
back to the pueue tool

pueue-group:tldr:70e3b

pueue-group: Add a custom group.
$ pueue group --add "${group_name}"
try on your machine

This command is using the "pueue" command-line tool to add a new group in the task queue. Here's the breakdown of the command:

  • "pueue": This is the command-line tool that is being executed.
  • "group": This is a specific command within the "pueue" tool that deals with task grouping.
  • "--add": This is an option that specifies that we want to add a new group.
  • "${group_name}": This is a placeholder for the name of the group you want to add. You need to replace "${group_name}" with the actual name you desire for the new group. It should be enclosed within double quotes.

By running this command and providing a group name, you would add a new group to the task queue using the "pueue" tool.

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