82fa15b3e3161f7fef5241ef343a864978f87a5c
Todo CLI app
A CLI to-do app written in Rust.
List of Commands
| Implemented | Command | Description |
|---|---|---|
| [ ] | todo list |
lists all the incomplete tasks (should be numbered) |
| [ ] | todo list --done |
lists all the completed tasks |
| [ ] | todo list --all |
lists all the completed tasks |
| [ ] | todo list --category {_category_} |
lists all the tasks of the category _category_ |
| [ ] | todo add {_task_} |
adds _task_ to the tasks |
| [ ] | todo add --category {_category_} {_task_} |
adds _task_ to the tasks with category _category_ |
| [ ] | todo did {_number_} |
mark a task with number _number_ as completed |
| [ ] | todo undid {_number_} |
mark a task with number _number_ as not completed |
| [ ] | todo update --category {new_category} {} |
updates the category of existing task |
Example of todo lists
| ID | Name | category |
|---|---|---|
| 5 | Finish Todo App | side-project |
Languages
Rust
100%