Can escape sequences survive being piped through "col -bx"?
Judging from a quick test, No.
There's better options if you want to make the sequences visible, for example: sed -n l
31–33 of 33 posts
Can escape sequences survive being piped through "col -bx"?
Combine this with https://thejh.net/misc/website-terminal-copy-paste and you've got something especially nasty.
Can escape sequences survive being piped through "col -bx"?
Judging from a quick test, No. There's better options if you want to make the sequences visible, for example: sed -n l
col -bx strips nonprintable characters. I have been using this for many years. Especially since the spread of Unicode. As for _viewing_ nonprintable characters, I am a heavy sed user and honestly I rarely use the l command except occassionally to view newlines, tabs and carriage returns. I prefer od or xxd.