color_stream
A quick Python script to run another shell command, and split/color the
stdout/stderr streams green/red
Story
While working with redirecting and assessing the output from another CLI tool,
I needed a way to see what was going to stderr, and what was going to stdout.
This tool highlights the two streams, in real time.
Usage
pip install color_stream
color_stream '<another command here>'
python3 -m color_stream '<another command here>'
color_stream python demo_1.py
color_stream ls file_that_exists.txt file_that_does_not_exist.txt
color_stream --stat python demo_1.py
Limitations