Crates.io | rehl |
lib.rs | rehl |
version | 1.0.1 |
source | src |
created_at | 2020-02-15 14:06:09.188911 |
updated_at | 2020-02-15 14:07:12.862803 |
description | Add highlighting to stdin for easier to read compiler output, or more readable log files. |
homepage | |
repository | https://gitlab.com/TheZoq2/rehl |
max_upload_size | |
id | 209472 |
size | 334,302 |
Add highlighting to stdin for easier to read compiler output, or more readable log files.
Improve compiler output readability
Or get a better overview of log files
rehl is written in rust and can be installed using cargo
cargo install rehl
The patterns to highlight are specified using colour flags followed by one or more regex patterns separated by spaces. Any text passed through stdin will have the colour applied to text matching those patterns.
# To errors and squiggly lines with red
> rehl -r Error: "\^~*"
# Also highlight warnings with yellow
> rehl -r Error: "\^~*" -y Warning:
See rehl --help
for more information