Forrest logo
back to the tb tool

tb:tldr:13488

tb: Edit item's priority.
$ tb --priority @${item_id} ${priority}
try on your machine

This command is using the "tb" command line tool to update the priority of an item in a task management system.

Here is a breakdown of the components of the command:

  • "tb": This is the executable or name of the command line tool being used.
  • "--priority": This is a flag or option of the "tb" command that indicates the command will be used to set the priority of an item.
  • "@${item_id}": This represents a placeholder for the item ID or identifier. The syntax suggests that the item ID is provided as an argument preceded by the "@" symbol.
  • "${priority}": This represents a placeholder for the priority value. The syntax suggests that the priority value is provided as an argument.

By running this command and substituting the placeholders with actual values, it will update the priority of a specific item in the task management system to the specified priority value.

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 tb tool