Recently I needed to watch the size of a file I was downloading and see how the size was increasing. I came across the command watch on unix. According to manpage of watch:
watch - execute a program periodically, showing output fullscreen
Sample Usage:
watch -n 5 "du -h <file name>"
Sample Output: (fullscreen)