Retain colors after piping through less

less than 1 minute read

In order to retain colours when passing output through less, use the -R option. Also ensure that the program sending output is configured to send out colour even if it detects that the output is going to a pipe and not to stdout. For eg. grep will give you colour through a pipe only if you use the –color=always command line argument. –color=auto does not do so.

Leave a Comment