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! |
|||
|
|
|
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 cause 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:
|
||||
|
|