rodo/README.md

28 lines
545 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-17 03:07:16 +00:00
* `init`--> initializes a file in ~/.rodo/todo-list
2018-04-13 06:14:51 +00:00
Example: `rodo init`
2018-04-10 00:27:01 +00:00
2018-04-17 03:07:16 +00:00
* `ls`--> lists items on the list
2018-04-13 06:14:51 +00:00
Example: `rodo rm 1`
2018-04-10 00:27:01 +00:00
2018-04-17 03:07:16 +00:00
* `add`--> adds an item to the list
2018-04-13 06:14:51 +00:00
Example: `rodo add bread`
2018-04-13 06:10:24 +00:00
Note: For multi-word items you will need to
2018-04-17 03:05:18 +00:00
surround your item in double quotes like this:
2018-04-18 03:22:30 +00:00
`rodo add "go to the bank"`
2018-04-10 00:27:01 +00:00
2018-04-17 03:07:16 +00:00
* `rm`--> removes an item from the list
2018-04-13 06:14:51 +00:00
Example: `rodo rm 1`
Note: You may have to run `rodo ls` to see which
2018-04-13 06:10:24 +00:00
number corresponds to which item to remove it.
2018-04-13 06:14:51 +00:00