Equivalent of 'clear' command when using tail -f
I am using the tail -f
command to follow an error log, and I often want to "clear" the terminal, much in the same way that the clear
unix command moves everything above the top of the window. Is there something like this when using tail?
At the moment I just hit return a bunch of times which works okay, but gets rather annoying, especially when I have a tall window.
I am on mac os 10.6.8.
View
> Clear Scrollback
or press ⌘+K
There isn't. Tail is reading a file, not your input. You could get the source for tail and modify it to behave the way you want, but there's no built in way to do this.