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:
- Host: GitHub
- URL: https://github.com/jedevc/replify
- Owner: jedevc
- Created: 2019-09-06T09:52:17.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-05T16:26:51.000Z (over 6 years ago)
- Last Synced: 2025-10-09T11:09:17.425Z (10 months ago)
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.