Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/markusmueller73/todo
Small binary to manage your todo's on the command line.
https://github.com/markusmueller73/todo
Last synced: about 1 month ago
JSON representation
Small binary to manage your todo's on the command line.
- Host: GitHub
- URL: https://github.com/markusmueller73/todo
- Owner: markusmueller73
- License: mit
- Created: 2024-11-21T09:21:15.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-21T09:23:10.000Z (about 1 month ago)
- Last Synced: 2024-11-21T10:24:36.423Z (about 1 month ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Command Line ToDo List
small binary to manage your todo's on the command line
(c) 2024 by markus dot mueller dot 73 at hotmail dot de
This small project is a suggested excercise to learn the Rust programming language. It is one of
my first attempts. If you find the code snippets to complicated, suggestions are welcome.The tasks saved in a CSV file, the enviroment of Linux and Windows is supported, the tasks saved
in the users HOME directory.# Usage:
**Show the help text:**
```todo --help```
**Add a new task:**
```todo add Something importend to do!```
Carefully, you can add tasks without quotation marks and todo can add the whole task, but if you
include special chars like forslash ```/``` or comma ```,``` the terminal will interpret it as
command arguments and this can result in unexpected behaviour. If you need this specials
chars, use quotation marks ```"``` for your task.**Show the list of tasks:**
```todo list```
The shown ids are useful for other commands like ```done``` and ```edit```.
**Mark task number 3 as done:**
```todo done 3```
**Remove task number 2 from list:**
```todo remove 2```
After removing a task, all tasks get a new consecutive ID, show the ```todo list``` to view the
new ID's*This cli command can be used in scripts, but the user interaction e.g. ```todo reset```
will always be aborted.*