I would like to know how to view special characters while using ‘less’ command. For instance I want to see the non-printable characters with a special notation. For instance in ‘vi’ editor I use “set list on” to see the line termination characters represented by dollar ‘$’ character. Similarly I would want to do this using ‘less’ command.
I referred Unix less manual, but to no avail.
less will look in its environment to see if there is a variable named LESS
You can set LESS in one of your ~/.profile (.bash_rc, etc, etc) and then anytime you run
lessfrom the comand line, it will find the LESS.Try adding this
This is the setup I use, there are some behaviors embedded in that may confuse you, so you can find out about what all of these mean from the help function in
less, just tap the ‘h’ key and nose around, or runless --help.Edit:
I looked at the help, and noticed there is also an
-roptionI agree that
catmay be the most exact match to your stated needs.Will add ‘$’ at end of each line and convert tab char to visual ‘^I’.
I hope this helps.