rodo/README.md

277 lines
8.2 KiB
Markdown
Raw Normal View History

2018-03-12 14:00:41 +00:00
# rodo
A minimal list manager for people who live on the command line.
2019-07-11 02:21:54 +00:00
2019-03-02 15:49:45 +00:00
# Screenshot
![](screenshot.png)
2019-04-30 01:35:44 +00:00
# Table of Contents
2020-01-06 21:05:52 +00:00
- [Quick Start](#quick-start)
- [Getting Started](#getting-started)
- [Conventions used in this readme](#conventions-used-in-this-readme)
- [Platforms](#platforms)
- [Requirements](#requirements)
- [Downloading the Requirements](#downloading-the-requirements)
2019-06-04 02:01:34 +00:00
- [Downloading Racket](#downloading-racket)
2020-01-06 21:05:52 +00:00
- [To Download Racket](#to-download-racket)
- [Downloading the rodo Source Code](#downloading-the-rodo-source-code)
- [To Download the rodo source code](#to-download-the-rodo-source-code)
- [Running rodo from Any Directory](#running-rodo-from-any-directory)
2019-06-04 02:01:34 +00:00
- [Setting up a $PATH](#setting-up-a-path)
2019-11-11 19:00:50 +00:00
- [To set up a $PATH](#to-set-up-a-path)
2019-06-04 02:01:34 +00:00
- [Adding rodo to your $PATH](#adding-rodo-to-your-path)
2019-11-11 19:00:50 +00:00
- [To add rodo to your $PATH](#to-add-rodo-to-your-path)
2020-01-06 21:05:52 +00:00
- [Using rodo](#using-rodo)
- [Showing the Help Message](#showing-the-help-message)
- [To Show the Help Message](#to-show-the-help-message)
- [Initializing rodo](#initializing-rodo)
- [To Initialize rodo](#to-initialize-rodo)
- [Displaying Your List](#displaying-your-list)
- [To Display Your List](#to-display-your-list)
- [Adding an Item to Your List](#adding-an-item-to-your-list)
- [To Add an Item to Your List](#to-add-an-item-to-your-list)
- [Removing an Item from Your List](#removing-an-item-from-your-list)
- [To Remove an Item from Your List](#to-remove-an-item-from-your-list)
- [Configuring rodo](#configuring-rodo)
- [To Configure Rodo](#to-configure-rodo)
2019-06-04 02:01:34 +00:00
- [List of commands](#list-of-commands)
- [Usage examples](#usage-examples)
2019-04-30 01:35:44 +00:00
2020-01-06 21:05:52 +00:00
# Quick Start
**Note** - This section is for users who are familiar with git, a Unix-like
command line environment, or scripting.
2019-03-13 03:29:01 +00:00
2019-03-23 19:29:06 +00:00
1. Make sure [Racket](https://racket-lang.org/) is installed
2. `git clone https://github.com/m455/rodo` into a directory of your choice
2019-04-12 13:23:46 +00:00
3. `cd` into the `rodo` directory
4. Choose one of the options below for running rodo:
* To use rodo using the Racket interpreter run: `racket rodo.rkt`
2019-11-11 19:00:50 +00:00
* To use rodo as an single-file executable follow the steps below:
1. Run `raco exe rodo.rkt` to compile rodo into a single-file executable
2. Run `./rodo`
5. (optional) Create a wrapper in your `$PATH` directory to run rodo from anywhere:
2019-03-23 19:29:06 +00:00
```
#!/usr/bin/env bash
racket ~/path/to/rodo.rkt "$@"
```
2019-03-13 03:29:01 +00:00
2019-11-11 19:00:50 +00:00
If you are using a single-file executable, create a wrapper as follows:
```
#!/usr/bin/env bash
~/path/to/rodo "$@"
```
2020-01-06 21:05:52 +00:00
# Getting Started
2019-11-11 19:00:50 +00:00
2020-01-06 21:05:52 +00:00
This readme will guide you through downloading, setting up, and using the rodo
list manager. This readme is intended for people who spend a lot of their time
on the command line and want a minimal list manager.
2019-11-11 19:00:50 +00:00
2020-01-06 21:05:52 +00:00
## Conventions used in this readme
2019-11-11 19:00:50 +00:00
* **Note** - Notes signify additional information
* **Tip**- Tips signify an alternate procedure for completing a step
* **Caution** - Cautions signify that damage may occur
* **Example** - Examples provide a visual reference of how a procedure would be carried out in the real world
2019-11-11 19:00:50 +00:00
* `Inline code` - Inline code signifies package names, filenames, or commands
* ```Code block``` - Code blocks signify file contents
2019-11-11 19:00:50 +00:00
2020-01-06 21:05:52 +00:00
## Platforms
2018-05-20 02:03:00 +00:00
2019-11-11 19:00:50 +00:00
Below is a list of platforms that rodo can run on:
2019-02-14 20:09:47 +00:00
* GNU/Linux
* Windows Subsystem for Linux
2019-04-30 01:35:44 +00:00
* macOS (Untested)
2018-09-08 01:01:00 +00:00
2020-01-06 21:05:52 +00:00
## Requirements
The following items must be installed before you can use rodo:
2018-09-08 01:01:00 +00:00
* Racket: [https://racket-lang.org/](https://racket-lang.org/)
* rodo's source code: [https://github.com/m455/rodo](https://github.com/m455/rodo)
2019-04-30 01:35:44 +00:00
2020-01-06 21:05:52 +00:00
# Downloading the Requirements
2019-11-11 19:00:50 +00:00
This section will guide you through downloading the required items for running
rodo.
2019-04-30 01:35:44 +00:00
## Downloading Racket
2018-09-08 01:01:00 +00:00
2019-11-11 19:00:50 +00:00
The Racket programming language will be needed to interpret or compile rodo.
2020-01-06 21:05:52 +00:00
### To Download Racket
2019-11-11 19:00:50 +00:00
1. run `sudo apt install racket` on the command line
2019-04-30 01:35:44 +00:00
2020-01-06 21:05:52 +00:00
## Downloading the rodo Source Code
2019-04-30 01:35:44 +00:00
2019-11-11 19:00:50 +00:00
rodo's source code is needed so Racket can interpret or compile rodo.
2020-01-06 21:05:52 +00:00
### To Download the rodo Source Code
2019-11-11 19:00:50 +00:00
2019-04-30 01:35:44 +00:00
1. run `git clone https://github.com/m455/rodo`
2020-01-06 21:05:52 +00:00
# Running rodo from Any Directory
2018-09-08 01:01:00 +00:00
2019-11-11 19:00:50 +00:00
This section will guide you through setting up your `$PATH` and adding rodo to
your `$PATH`. This will allow you to run rodo from any directory on your system.
2019-04-30 01:35:44 +00:00
## Setting up a $PATH
2018-10-20 01:36:52 +00:00
A `$PATH` is a directory in which you can place executable files or scripts.
2019-11-11 19:00:50 +00:00
After placing executable files or scripts in your `$PATH` directory, you can
then run these files or scripts from any directory on your machine.
2019-11-11 19:00:50 +00:00
**Tip**: If you have a `$PATH` already, then skip to [Adding rodo to your
$PATH](#adding-rodo-to-your-path)
2019-01-31 14:46:14 +00:00
2019-11-11 19:00:50 +00:00
### To set up a $PATH
1. Create a `~/bin/` directory for your `$PATH` by running `mkdir ~/bin/`
2. Add the `~/bin` directory to your `$PATH` by running the following command:
```
echo "export PATH=~/bin:\$PATH" >> .bashrc
```
2019-01-31 14:46:14 +00:00
2019-04-30 01:35:44 +00:00
## Adding rodo to your $PATH
2019-01-31 14:46:14 +00:00
2019-11-11 19:00:50 +00:00
After rodo has been added to your `$PATH`, you will be able to run it from any
directory on your machine.
### To add rodo to your $PATH
2019-01-31 14:46:14 +00:00
1. Create a file in your `~/bin/` directory with the following contents in it:
```
#!/usr/bin/env bash
racket ~/path/to/rodo.rkt "$@"
```
2. Save the file
3. Make the file executable by running `chmod u+x ~/bin/name-of-your-file`
2018-11-12 02:56:10 +00:00
2019-11-11 19:00:50 +00:00
**Example**: You create a file called `rodo` in your `~/bin/` directory with
the following contents in it if you downloaded the rodo directory to your
`~/downloads/` directory:
```
racket ~/downloads/rodo/rodo.rkt "$@"
```
You would then make the rodo file executable by running the following
command:
```
chmod u+x ~/bin/rodo
```
2020-01-06 21:05:52 +00:00
# Using rodo
This section will guide you the various commands that rodo can use. This section
assumes you know how to run either the `rodo.rkt` or an executable created with
`raco exe rodo.rkt`.
## Showing the Help Message
The help message will provide a list of available commands. This is useful
in case you forget the name of a comamnd or how to use a command.
### To Show the Help Message
1. Run `rodo -h`
## Initializing rodo
Before using rodo, you must initialize rodo. Initializing will allow you to save
your list to a text file for later access.
### To initialize rodo
1. Run `rodo init`
## Displaying Your List
Displaying your list will allow you to view items you have added to your list.
You will notice numbers beside the items in your list. These numbers are for
references when removing items. See the [Removing an Item from Your
List](#removing-an-item-from-your-list) topic for more information.
### To Display Your List
1. Run `rodo ls`
## Adding an Item to Your List
Adding an item to your list will save it to a text file to access later.
## To Add an Item to Your List
1. Run `rodo add "this is an example of an item using double quotation marks"`
**Note** - The double quotation marks are optional, but recommended
## Removing an Item from Your List
When removing an item from your list, you can reference the numbers beside each
item when [Displaying Your List](#displaying-your-list). You can use these
numbers when removing an item from your list.
### To Remove an Item from Your List
1. Run `rodo rm 1`
**Note 1** - The "1" in the procedure above will remove the first item in your
list.
**Note 2** - You may need to run `rodo ls` first to see which numbers correspond
with which item in your list.
## Configuring rodo
You can configure rodo's settings, such as the location of the list file, and
command names.
## To Configure rodo
**Caution**: Changing the `config.rkt` file should be done at your own risk as it may break rodo's functionality
1. Edit the `config.rkt` file
2019-04-30 01:35:44 +00:00
# List of commands
This section lists and describes rodo's commands.
2018-04-10 00:27:01 +00:00
2019-04-30 01:35:44 +00:00
* `-h` or `--help` displays the help message
* `init` creates a list file (See the `config.rkt` file for the default location of this file)
* `ls` displays your list
* `add` adds an item to your list
* `rm` removes an item from your list
2018-04-13 06:14:51 +00:00
2019-04-30 00:31:36 +00:00
# Usage examples
2018-04-10 00:27:01 +00:00
2019-11-11 19:00:50 +00:00
The examples below assume that you have [added rodo to your $PATH](#adding-rodo-to-your-path).
2019-03-13 03:43:15 +00:00
`rodo -h`
`rodo --help`
`rodo init`
2018-04-13 06:14:51 +00:00
`rodo ls`
2018-09-08 04:30:28 +00:00
`rodo add "this is an item"`
2018-09-08 04:30:28 +00:00
`rodo add this is an item without quotation marks`
2018-09-08 04:30:28 +00:00
2019-11-11 19:00:50 +00:00
`rodo rm 1`
2019-11-11 19:00:50 +00:00
**Note**: You may have to run `rodo ls` to see which number corresponds to which item in your list.
2019-03-13 03:43:15 +00:00