How do you clear the IRB console screen?
|
On Mac OS X or Linux you can use Ctrl + L to clear the IRB screen. |
||||
|
|
|||||||||||||
|
|
On Ubuntu 11.10 system A big mess of ugly text
what ya get:
|
||||
|
|
|
on *nix boxes
on Windows, I don't think there is a good solution. EDIT: Interesting:
|
||||
|
|
Clears the screen and then returns |
|||
|
|
|
I came here looking for a way to reset the tty with irb, since it wasn't printing newlines or showing what I typed somehow, only some output.
finally did the trick for me! |
|||||||
|
|
In order to clear the screen just do:
P.S. This was tested on Linux. |
||||
|
|
|
For windows users: If you create a bat file name c.bat whose contents are:
Then, in IRB, you can say:
to clear the console. I just thought I would share because I thought that was pretty cool. Essentially anything in the path is accessible. |
||||
|
|
|
The backtick operator captures the output of the command and returns it
would work better, I guess. |
|||||||||
|
|
What I was looking for when I found this, was how to get a clean prompt in irb.
That will give you this: (sans quotes)
instead of this:
|
||||
|
|