I've seen many more or less related topics, but all I found discuss how to color awk
output. I need to preserve the color that was provided as awk
input. For example, now I have:
./some_command
(red_text) (blue_text) (green_text)
./some_command | awk -F' ' '{print $1}'
(red_text) # < but the color is standard terminal color, not red anymore
How to keep the original coloring in the awk
output?