Why is less preferable to cat for interactively inspecting a very large log?
less
cat
It prints the entire file to the terminal faster than any navigation can occur.
It converts every file into a binary executable before opening it.
It provides page-by-page navigation and search without dumping the entire file past the screen.
It deletes old lines so the file becomes small enough to read.