From 7f34ce14a677e8b47a4953a61f32197332466359 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Tue, 8 Jun 2021 21:28:46 +0200 Subject: Update README --- README | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 README (limited to 'README') diff --git a/README b/README new file mode 100644 index 0000000..1370d60 --- /dev/null +++ b/README @@ -0,0 +1,37 @@ +repl creates a read-eval-print loop out of any command. It is a +simple and readable C program that requires GNU readline. + +In other words, it's a REPL for command-line interfaces that always +require a "prefix" command. If you're tired of having to type git +everytime you want to issue a git command: + + $ git init + $ git add . + $ git status + $ git commit + $ git push + $ git status + +... then you can do this instead: + + $ repl git + git& init + git& add . + git& status + git& commit + git& push + git& status + +The program automatically prefixes each command with git, so that +you don't have to type it. + +### Installation + +First, edit the Makefile to set it up for your system. + +Then, issue the following commands: + + $ make + $ make install + +To uninstall repl, run make uninstall. -- cgit v1.2.3