Forrest logo
back to the tb tool

tb:tldr:99edd

tb: Move item to a board.
$ tb --move @${item_id} ${board_name}
try on your machine

The command "tb --move @${item_id} ${board_name}" is used to move an item (task, note, issue, etc.) identified by its item ID to a different board.

Here's a breakdown of the command:

  • "tb" refers to a command-line tool or script that provides functionality related to managing tasks or items on a board.
  • "--move" specifies that we want to move an item.
  • "@${item_id}" represents the item ID. The "@" symbol is often used to indicate an item reference in certain systems or tools.
  • "${board_name}" refers to the name of the destination board where the item will be moved.

When executing this command with the appropriate values for item ID and board name, the specified item will be transferred from its current board to the specified board.

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