Tail
On unix there are tons of little tools that are useful when working on a program. Tail shows the end of a file and tail -f will watch the file for changes and show them. This makes tail very yseful for watching file that are being written out to disk like logs files. I wanted [...]