rodo/README.md

20 lines
508 B
Markdown
Raw Normal View History

2018-03-12 14:00:41 +00:00
# rodo
A command-line todo list in Racket
2018-03-12 14:01:22 +00:00
2018-04-13 06:10:24 +00:00
* `init`: initialize a file in ~/.rodo/todo-list
Example: `rodo init`
2018-04-10 00:27:01 +00:00
2018-04-13 06:10:24 +00:00
* `ls`: lists items on the list
Example: `rodo rm 1`
2018-04-10 00:27:01 +00:00
2018-04-13 06:10:24 +00:00
* `add`: adds an item to the list
Note: For multi-word items you will need to
surround your item in double quotes as so:
`rodo add "go to the bank"`
Example: `rodo add bread`
2018-04-10 00:27:01 +00:00
2018-04-13 06:10:24 +00:00
* `rm`: removes an item from the list
Note: You may have to run `rodo ls` to see which
number corresponds to which item to remove it.
Example: `rodo rm 1`