Need
Within a Debian/Ubuntu OS, I need to print (to STDOUT) a file with embed format interprated by the pager (I'm using "most") but it does not interpolate colors properly. All foreground colors appear white colored even if defined as black or red or green or whatever in the file. I can't find the pager setup to force the use of the file formats.
Questions :
Is there an option to force the pager "most" to using the file formats ?
or
Shall I use another pager (than currently "most") ?
Some details : myfile content example :
481\tparameter.foo.bar\t\033[1;32m\033[40m10.0.0.0/255.0.0.0, 172.16.0.0/255.240.0.0\t\033[1;31m\033[40m10.0.0.0/255.0.0.0,192.168.0.0/255.255.255.0\033[00m\n
Works (colors are correctly interpreted when not using the pager)
echo -e $(cat myfile)
Does not work (foreground colors appear white using the pager "most")
echo -e $(cat myfile) | most
or
echo -e $(cat myfile) | pager
This is the solution I devised to get file coloring in the shell. First, install the package source-highlight
Then create a script named
colorcat
with the following contentand save it on your
$PATH
. I used~/bin
for that but/usr/local/bin
is also a good choice.Make the
colorcat
script executableAnd then just do
and it will be shown with pretty colors.
You can also do
for small files if you want.