Reading file endings with tail
Last 10 lines (default):
tail file.log
Last N lines:
tail -50 file.log
Follow a file (monitor for new lines):
tail -f file.log
Follow with initial context of N lines:
tail -10f file.log
Skip the first N lines (useful for files with headers):
tail -n+2 file.log