A tool for highlighting words in your terminal
Colorizer accepts one or more pattern parameters as input and highlights each match in one of the available colors red, blue or green, there are also built-in regular expressions for email, isotime and ipv4 address.
bash
colorizer --help
bash
cargo install colorizer
bash
// via pipe
cat access.log | colorizer --email --ipv4 --isotime
```bash echo "hello world" | colorizer --color red --pattern world
echo "hello world" | colorizer --pattern "\w+r\w+" --color green ```
bash
tail -f access.log | colorizer --pattern ERROR