Display \n characters as newlines when using tail?

I have a file that I am trying to read by using tail -f. I was wondering if there was a way to have the terminal output an actual line break instead of the \n character.


tail -f file | sed 's/\\n/\n/g'