I'd like to reverse the order of lines in a text file (or stdin), preserving the contents of each line. So, i.e., starting with:
foo bar baz
baz bar foo
BSD tail:
tail -r myfile.txt
Reference: FreeBSD, NetBSD, OpenBSD and OS X manual pages.