Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/backendt/rusty-todolist

Todo-list CLI using Rust
https://github.com/backendt/rusty-todolist

cli rust todolist

Last synced: about 1 month ago
JSON representation

Todo-list CLI using Rust

Awesome Lists containing this project

README

        

# Rusty-todolist
### Rusty-todolist is a CLI program made to manage notes.
Disclaimer: This is my first time using Rust. This project was made to learn the Rust language.

Add note: todo add
e.g `todo add "Test note" "This is a test note."`

Remove note(s): todo delete
e.g `todo delete "Test note"`
e.g `todo --regex delete "Test.*"`

List notes: todo list

Read note(s): todo read
e.g `todo read "Test note"`
e.g `todo --regex read "*"`

### Troubleshooting
Notes are stored in "$HOME/.todos". The HOME environment variable has to be set.