From c6850f8e375448cd56c9a10a40e0f8667d351b40 Mon Sep 17 00:00:00 2001 From: Yannis Huber <32066446+yannishuber@users.noreply.github.com> Date: Sun, 2 Dec 2018 15:52:05 +0100 Subject: [PATCH] tb: add page (#2630) --- pages/common/tb.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/common/tb.md diff --git a/pages/common/tb.md b/pages/common/tb.md new file mode 100644 index 0000000000..635ee04451 --- /dev/null +++ b/pages/common/tb.md @@ -0,0 +1,27 @@ +# tb + +> CLI for managing tasks and notes across multiple boards. + +- Add a new task to a board: + +`tb --task {{task description}} @{{board_name}}` + +- Add a new note to a board: + +`tb --note {{note description}} @{{board_name}}` + +- Edit item's priority: + +`tb --priority @{{item_id}} {{priority}}` + +- Check/uncheck item: + +`tb --check {{item_id}}` + +- Archive all checked items: + +`tb --clear` + +- Move item to a board: + +`tb --move @{{item_id}} {{board_name}}`