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

https://github.com/wisepythagoras/rreplace


https://github.com/wisepythagoras/rreplace

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# rreplace

This program is inspired by sed, which I've had to use a lot of times. Unlike sed, however, this program is a lot easier to use and the regular expressions are in the format every modern programmer is familiar with.

## Usage

``` sh
git clone https://github.com/wisepythagoras/rreplace && cd rreplace
cargo build --release
```

It only takes 4 arguments or 2 with the input file/string passed via stdin and the output is sent to stdout:

```
rreplace - Change occurences of a string in a file to another
Usage: rreplace
Usage: cat INPUT | rreplace > OUTPUT
```