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.

1

2 Answers

View > Clear Scrollback or press +K

1

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.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like