531 B
Executable File
531 B
Executable File
rodo
A command-line todo list in Racket
-
init
: initialize a file in ~/.rodo/todo-listExample:
rodo init
-
ls
: lists items on the listExample:
rodo rm 1
-
add
: adds an item to the listExample:
rodo add bread
Note: For multi-word items you will need to surround your item in double quotes as so:
rodo add "go to the bank"
-
rm
: removes an item from the listExample:
rodo rm 1
Note: You may have to run
rodo ls
to see which number corresponds to which item to remove it.