Crates.io | todo-bin |
lib.rs | todo-bin |
version | 0.1.0 |
source | src |
created_at | 2021-10-01 18:31:19.628247 |
updated_at | 2021-10-01 18:31:19.628247 |
description | Simple todo cli program written in rust |
homepage | |
repository | |
max_upload_size | |
id | 459206 |
size | 151,468 |
A lightweight and super fast cli todo program written in rust under 200 sloc
AUR package: todo-bin
use cargo build --release
to compile todo and copy target/release/todo
to /usr/bin
todo is still really early in development so be careful or sth
btw i know that my code is not the best but im still learing
Todo is a super fast and simple tasks organizer written in rust
Example: todo list
Available commands:
- add [TASK/s]
adds new task/s
Example: todo add "buy carrots"
- list
lists all tasks
Example: todo list
- done [INDEX]
marks task as done
Example: todo done 2 3 (marks second and third tasks as completed)
- rm [INDEX]
removes a task
Example: todo rm 4
- sort
sorts completed and uncompleted tasks
Example: todo sort
- raw [todo/done]
prints nothing but done/incompleted tasks in plain text, useful for scripting
Example: todo raw done