A simple to-do list app that you can use from the terminal.
todo [command]# Adding new to-do
todo add Take a walk# Listing all to-do's
todo list# Marking a to-do as completed
todo complete 2# Marking a to-do as important
todo mark important 8# Deleting a to-do
todo delete 5# Unmarking a to-do as completed
todo unmark done 1# Unmarking a to-do as important
todo unmark important 9add: Add a new to-do.complete: Mark a to-do as completed by index.delete: Delete a to-do by index.list: List all to-dos.mark: Mark your to-do.unmark: Unmark your to-do.
-h,--help: Print help message for todo.-v,--version: Print version.
Documentation about available commands, sub-commands, flags and more is in the /docs folder.