2018-03-12 14:00:41 +00:00
|
|
|
# rodo
|
2018-04-18 04:12:32 +00:00
|
|
|
|
2018-05-20 02:03:00 +00:00
|
|
|
**rodo** is a command-line todo list written in Racket
|
2018-03-12 14:01:22 +00:00
|
|
|
|
2018-05-20 02:03:00 +00:00
|
|
|
## Getting started
|
2018-04-10 00:27:01 +00:00
|
|
|
|
2018-05-20 02:03:00 +00:00
|
|
|
The following instructions will get you a copy of the
|
|
|
|
project for use on your local machine
|
|
|
|
|
|
|
|
### Requirements
|
|
|
|
|
|
|
|
* GNU/Linux
|
|
|
|
* Racket 6.x
|
|
|
|
|
|
|
|
## Setting up rodo
|
|
|
|
|
|
|
|
1. Download from your terminal by running:
|
|
|
|
|
|
|
|
`git clone https://github.com/m455/rodo`
|
|
|
|
|
|
|
|
2. Create a $PATH if you haven't done so already:
|
|
|
|
|
|
|
|
`echo "export PATH=~/bin:$PATH" >> .bashrc`
|
|
|
|
|
2018-05-20 02:04:18 +00:00
|
|
|
3. Create a file called `rodo` in your $PATH and add the
|
|
|
|
following contents to it:
|
2018-05-20 02:03:00 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
racket ~/path/to/rodo.rkt "$@"
|
|
|
|
```
|
|
|
|
(For example, if you `git clone`d the project to your
|
|
|
|
`~/downloads/` folder you would change `racket
|
|
|
|
~/path/to/rodo.rkt "$@"` to 'racket
|
|
|
|
~/downloads/rodo/rodo.rkt "$@"`)
|
|
|
|
|
|
|
|
4. Make the `rodo` file executable:
|
|
|
|
|
|
|
|
`chmod u+x rodo`
|
|
|
|
|
|
|
|
### Usage
|
|
|
|
|
|
|
|
## `init`
|
2018-04-18 04:12:32 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
Initializes a file in *~/.rodo/todo-list*
|
|
|
|
|
2018-04-18 04:11:08 +00:00
|
|
|
**Example:** `$ rodo init`
|
2018-04-10 00:27:01 +00:00
|
|
|
|
2018-05-20 02:03:00 +00:00
|
|
|
## `ls`
|
2018-04-18 04:12:32 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
Lists items from the list
|
|
|
|
|
2018-04-18 04:11:08 +00:00
|
|
|
**Example:** `$ rodo rm 1`
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-05-20 02:03:00 +00:00
|
|
|
## `add`
|
2018-04-18 04:12:32 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
Adds an item to the list
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:11:08 +00:00
|
|
|
**Example:** `$ rodo add bread`
|
2018-04-17 03:05:18 +00:00
|
|
|
|
2018-04-18 04:12:32 +00:00
|
|
|
**Note:** For multi-word items you will need to surround your item in double quotes like this:
|
2018-04-18 04:04:10 +00:00
|
|
|
`$ rodo add "go to the bank"`
|
2018-04-10 00:27:01 +00:00
|
|
|
|
2018-05-20 02:03:00 +00:00
|
|
|
## `rm`
|
2018-04-18 04:12:32 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
Removes an item from the list
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:11:08 +00:00
|
|
|
**Example:** `$ rodo rm 1`
|
2018-04-13 06:14:51 +00:00
|
|
|
|
2018-04-18 04:12:32 +00:00
|
|
|
**Note:** You may have to run `rodo ls` to see which number corresponds to which item to remove it.
|
2018-04-18 04:04:10 +00:00
|
|
|
|
|
|
|
## Configure rodo
|
2018-04-18 04:12:32 +00:00
|
|
|
|
2018-04-18 04:04:10 +00:00
|
|
|
Right now, the configurations can be found in the `config.rkt` file. Settings such at program name, path, and directory can be set here.
|