$ replify echo
Initialized REPL for [echo]
echo> "Hello, World!"
Hello, World!
echo> "It works!"
It works!
$ replify git
Initialized REPL for [git]
git> init
Initialized empty Git repository in /your/directory/here/.git/
git> remote add origin https://your-url/repo.git
git> checkout -b new-branch
Switched to a new branch 'new-branch'
git> push
@rileytg I think you can simply prepend a command with
readline
to get readline support. Not sure if this works for other libraries likelibedit
.