Skip to main content
1 of 3
SHawarden
  • 554
  • 2
  • 10

show-special-characters-in-unix-while-using-less-command

To see what that character is:

less -r sourcefile

unix-linux-sed-ascii-control-codes-nonprintable

To sed out the offending control code:

sed 's/'echo "\033"'/ /g'

where \033 is replaced with whatever is actually there.

SHawarden
  • 554
  • 2
  • 10