Scrambler is a simple command line tool that allows you to scramble text while preserving special characters, numbers, and white spaces. The tool also provides a feature to exclude certain words from scrambling using regular expressions. (Next Version)
```bash
cargo install scrambler
```
```bash
echo "some text" | scrambler
```
Scramble the text in stdin and prints the output to stdout.
```bash
$ echo 'The brown fox jumps over the lazy dog' | scrambler
Uqd vruoj auj splhn hxse cth elci csn
```
Currently only supports ASCII characters.
This project is licensed under the MIT License.