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
- Host: GitHub
- URL: https://github.com/monntecc/quick-replace
- Owner: monntecc
- License: mit
- Created: 2023-05-20T12:13:14.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-20T12:16:40.000Z (about 3 years ago)
- Last Synced: 2025-03-01T23:32:32.052Z (over 1 year ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
```