Go to file
m455 c3851346ce added a wrapper for ~/bin 2018-04-17 23:22:30 -04:00
LICENSE updated via script 2018-03-16 09:53:12 -04:00
README.md added a wrapper for ~/bin 2018-04-17 23:22:30 -04:00
args.rkt fixed bug that prevented user from adding long strings. turns out it was just a wrapper problem. changed an error message to a nicer message 2018-04-17 22:58:33 -04:00
config.rkt updated via script 2018-04-15 00:15:10 -04:00
init.rkt can now remove items without errors, but have to improve the process of removing and adding items later 2018-04-16 09:57:38 -04:00
io.rkt updated via script 2018-04-15 00:15:10 -04:00
messages.rkt fixed bug that prevented user from adding long strings. turns out it was just a wrapper problem. changed an error message to a nicer message 2018-04-17 22:58:33 -04:00
rodo.rkt updated via script 2018-04-12 14:25:19 -04:00
util.rkt can now remove items without errors, but have to improve the process of removing and adding items later 2018-04-16 09:57:38 -04:00
wrapper-example added a wrapper for ~/bin 2018-04-17 23:21:47 -04:00

README.md

rodo

A command-line todo list in Racket

  • init--> initializes a file in ~/.rodo/todo-list

    Example: rodo init

  • ls--> lists items on the list

    Example: rodo rm 1

  • add--> adds an item to the list

    Example: rodo add bread

    Note: For multi-word items you will need to surround your item in double quotes like this:

    rodo add "go to the bank"

  • rm--> removes an item from the list

    Example: rodo rm 1

    Note: You may have to run rodo ls to see which number corresponds to which item to remove it.