Update README.md

main
Jesse Laprade 2018-09-08 00:30:28 -04:00 committed by GitHub
parent f2c47822ce
commit 39157a5622
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 16 additions and 13 deletions

View File

@ -18,6 +18,7 @@ An easy-to-use todo list program for people who live on the command line written
* [Windows](https://github.com/m455/rodo#windows) * [Windows](https://github.com/m455/rodo#windows)
* [Mac](https://github.com/m455/rodo#mac) * [Mac](https://github.com/m455/rodo#mac)
* [Usage](https://github.com/m455/rodo#usage) * [Usage](https://github.com/m455/rodo#usage)
* [Examples](https://github.com/m455/rodo#examples)
* [Configuration](https://github.com/m455/rodo#configuring-rodo) * [Configuration](https://github.com/m455/rodo#configuring-rodo)
## Legend ## Legend
@ -86,27 +87,29 @@ racket ~/path/to/rodo.rkt "$@"
## Usage ## Usage
The below examples assume that you have **rodo** [set up](https://github.com/m455/rodo#setup-a-path) in your **$PATH** folder. init - Initializes a file in **~/.rodo/todo-list** by default
`init` - Initializes a file in **~/.rodo/todo-list** by default ls - Lists items from the list
Example: `rodo init` add - Adds an entry to the list
`ls` - Lists items from the list rm - Removes an item from the list
Example: `rodo ls` **Note:** You may have to run `rodo ls` to see which number corresponds to which item to remove it
`add` - Adds an entry to the list ## Examples
Example of adding a single-word entry: `rodo add bread` The below examples assume that you have **rodo** [set up](https://github.com/m455/rodo#setup-a-path) in your **$PATH** folder
Example of adding a multi-word entry: `rodo add "go to the bank"` init - `rodo init`
`rm` - Removes an item from the list ls - `rodo ls`
Example: `rodo rm 1` add (Single-word entry) - `rodo add bread`
**Note:** You may have to run `rodo ls` to see which number corresponds to which item to remove it. add (Multi-word entry) - `rodo add "go to the bank"`
rm - `rodo rm 1`
## Configuring rodo ## Configuring rodo