From a15cf720e9bcd577db66a171f5c539390371f1f1 Mon Sep 17 00:00:00 2001 From: Raffaele Mignone Date: Sun, 24 Oct 2021 21:05:11 +0200 Subject: [PATCH] todoman: add page (#6994) --- pages/common/todoman.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/todoman.md diff --git a/pages/common/todoman.md b/pages/common/todoman.md new file mode 100644 index 0000000000..7ed49fadb0 --- /dev/null +++ b/pages/common/todoman.md @@ -0,0 +1,24 @@ +# todoman + +> A simple, standards-based, cli todo manager. +> More information: . + +- Add a new task to the work list: + +`todo new {{thing_to_do}} --list {{work}}` + +- List startable tasks: + +`todo list --startable` + +- Mark a task as completed: + +`todo done {{task_id}}` + +- Show details about a task: + +`todo show {{task_id}}` + +- Delete a task: + +`todo delete {{task_id}}`