Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/backendt/rusty-todolist
- Owner: Backendt
- License: gpl-3.0
- Created: 2023-07-03T17:16:05.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-09T13:55:58.000Z (over 1 year ago)
- Last Synced: 2024-11-05T11:15:55.455Z (3 months ago)
- Topics: cli, rust, todolist
- Language: Rust
- Homepage:
- Size: 23.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.