我已经看到了许多或多或少相关的主题,但我发现的所有主题都讨论了如何对输出进行着色awk
。我需要保留作为输入提供的颜色awk
。例如,现在我有:
./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
如何在awk
输出中保留原始颜色?