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

https://github.com/monntecc/quick-replace

Quick content replacer using keywords or regex
https://github.com/monntecc/quick-replace

Last synced: about 1 month ago
JSON representation

Quick content replacer using keywords or regex

Awesome Lists containing this project

README

          

## How to use
```bash
quick-replace
```

## Example

Before replacement:
```
Hello, World!
```

run program:
```bash
cargo run -- "World" "Rust" test.txt output.txt
```

and result:
```
Hello, Rust!
```