For text with color codes, how to wrap it to a fixed length in the terminal?
Text without color codes wraps nicely with fold
:
echo -e "12345678901234567890" | fold -w 10
1234567890
1234567890
But this red text wraps wrong:
echo -e "\u001b[31m12345678901234567890" | fold -w 10
12345
6789012345
67890
Note: While the red text is wrapped wrong, it still is printed in red, which is the desired behavior.
(My use case is line wrapping the output of git log --color=always --oneline --graph
.)
When determining the (printable) width of a prompt (eg,
PS1
) the special characters -\[
and\]
- are used to designate a series of non-printing characters (see this, this, this and this).So far I've been unable to find a way to use
\[
and\]
outside the scope of a prompt hence thisawk
hack ...Assumptions:
\e[...m
(\e[m
turns off color)We'll wrap one
awk
idea in abash
function (for easier use):NOTES:
Test run:
Displaying colors: