cltodo is a CLI application implementing a TODO list. It is developed for fast, flexible and simple use.
Just run
console
cargo install cltodo
to install it directly from crates.io.
If you are on linux, you can install it by downloading the package on releases and running
console
sudo dpkg -i cltodo_0.1.1-1_amd64.deb
Each entry on the list has three possible priorities: "normal", "important" or "critical".
Add an entry with:
console
~$ cltodo add "Align with Alice about refatoring foo.rs" -p "important"
Get all entries with:
```console ~$ cltodo get
```
Getting entries has a lot optional arguments available. For example, you can filter by some date using:
console
~$ cltodo get --from "2023-12-12"
No results found.
For an extensive list, run cltodo get -h
.
```console ~$ cltodo get -h Queries TODO entries based on the parameters
Usage: cltodo.exe get [OPTIONS]
Options:
-p, --priority
If you are inside a git project, it will manage a todo list for that particular project. You can refer to the global todo list by passing "-g" as an option instead.