From 262e9d5f3bce9b514505af5e0c4899bcfc857b2a Mon Sep 17 00:00:00 2001 From: Ulysse Buonomo Date: Wed, 27 Sep 2023 08:34:12 -0500 Subject: [PATCH] todo.sh: add page (#10757) Co-authored-by: K.B.Dharun Krishna --- pages/common/todo.sh.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/todo.sh.md diff --git a/pages/common/todo.sh.md b/pages/common/todo.sh.md new file mode 100644 index 0000000000..0e7394725a --- /dev/null +++ b/pages/common/todo.sh.md @@ -0,0 +1,28 @@ +# todo.sh + +> Simple and extensible shell script for managing your `todo.txt` file. +> More information: . + +- List every item: + +`todo.sh ls` + +- Add an item with project and context tags: + +`todo.sh add '{{description}} +{{project}} @{{context}}'` + +- Mark an item as [do]ne: + +`todo.sh do {{item_no}}` + +- Remove an item: + +`todo.sh rm {{item_no}}` + +- Set an item's [pri]ority (A-Z): + +`todo.sh pri {{item_no}} {{priority}}` + +- Replace an item: + +`todo.sh replace {{item_no}} '{{new_description}}'`