An open API service indexing awesome lists of open source software.

https://github.com/jedevc/replify

Neat mini-shell creation :tada:
https://github.com/jedevc/replify

Last synced: 2 months ago
JSON representation

Neat mini-shell creation :tada:

Awesome Lists containing this project

README

          

# replify

Tool for transforming single-use tools into full on REPLs!

You can take a command that takes input on argv and outputs to stdout, and
turns it into a REPL that takes input from stdin and output to stdout.

For example:

```bash
$ replify git
$ status
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean
$ branch
master
* dev
```

It's super useful for CTFs and stuff like that.