aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 7e4235f21f7b482b4de0edd5a64bb711ea159f12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
`repl.c` creates a read-eval-print loop out of any command.  It is
a simple and readable C program that requires GNU readline.

### Installation

The following commands install `repl` in `/usr/local/bin` and
`repl.1`, its man page, in `/usr/local/man`:

    $ make
    $ make install

If you want to install it somewhere different from `/usr/local`,
edit the Makefile and modify the `PREFIX` variable.

To uninstall both binary and man page, run `make uninstall`.

### Usage

    $ repl git
    git > status
    On branch master
    Your branch is up to date with 'origin/master'.
    git >