Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to clear the scrollback buffer on Linux console VTs programmatically. i.e. not just clear the current visible screen, but the entire scrollback buffer, too. I.e. everything that after a clear screen would still be visible with Alt-PgUp should be gone too. Anybody got an idea how to achieve that in nice code?

share|improve this question
4  
Warning: this user is down-vote happy, answer here at your peril. – richard May 17 '11 at 20:53
2  
@richard: I love to live dangerously. – ninjalj May 18 '11 at 0:03

5 Answers

up vote 3 down vote accepted

I don't think this is in mainline yet, but linux-next has a patch to support a new console escape sequence that clears the screen and the scrollback buffer: CSI 3 J

For something that works without having to upgrade your kernel, you can use:

chvt 42; chvt <current tty no>; echo -en "\e[1;1H\e[2J"

Alternatively:

echo -e "\e[12;42]"; sleep .01; echo -en "\e[12;<current tty no>]\e[1;1H\e[2J"

You can get the current tty number with:

$( ls -l /proc/self/fd | sed -ne 's/.*tty//p' )
share|improve this answer
thanks, this is what i was looking for! – user175104 May 19 '11 at 11:14

Keep in mind that other tools (over ssh for example) will have differing implementations of the "scrollback buffer". I highly doubt that you can clean the putty buffer by code in your machine. Also see http://superuser.com/questions/122911/bash-reset-and-clear-commands

share|improve this answer
Nice reference link, thx – sehe May 17 '11 at 20:44
I care only about Linux console virtual terminals. Nothing else. – user175104 May 17 '11 at 20:47

I doubt that you can guarantee to clear all terminal types. The VT100 (lowest common denominator) has a reset-device control code of <ESC>c

share|improve this answer
As I wrote explicitly I only care about the Linux console VTs, nothing else. i.e. the stuff usually done by fbcon. – user175104 May 17 '11 at 20:48

If it is for convenience, then try one of the answers. If it is for security then forget it. You can not un-say something.

share|improve this answer
uh? one use is to hide the linux console scrollback buffer after a user logged out. – user175104 May 17 '11 at 20:50

echo -e '\0033\0143' #definitely depends on the terminal emulator you are using, tested on gnome terminal

from http://superuser.com/questions/122911/bash-reset-and-clear-commands

share|improve this answer
nope, that clears the screen, not the scrollback buffer. – user175104 May 17 '11 at 20:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.