I'm using a processing tool that reads a file and outputs a modified version of it.
I have been working with it successfully like this:
tail -15f log_file.log | log_colorizer
But I would also like to know how to pipe its live-updates to less:
tail -15f log_file.log | log_colorizer | less -R +F
although it's giving me a hard time, as it doesn't seem to be working. What am I doing wrong? Doing a simple less +F log_file.log seems to work fine.
Thanks