up vote 16 down vote favorite
4
share [g+] share [fb]

How do you clear the IRB console screen?

link|improve this question

feedback

6 Answers

up vote 26 down vote accepted

On Mac OS X or Linux you can use Ctrl + L to clear the IRB screen.

link|improve this answer
feedback

throw this inside %userprofile%.irbrc and you're good

def cls
  system('cls')
end

[Source]

link|improve this answer
I should clarify that this applies to Windows only. – Ben Hoffstein Sep 22 '08 at 18:27
You can also do system('clear') on linux and it works fine – Orion Edwards Sep 23 '08 at 4:02
feedback

on *nix boxes

`clear`

on Windows, I don't think there is a good solution.

EDIT:

Interesting:

system 'cls' #works,
`cls` does not.
link|improve this answer
feedback

On Ubuntu 11.10 system clear will mostly clear the irb window. You get a return => True value printed.

A big mess of ugly text

ruby-1.9.2-p290 :007 > system 'clear'

what ya get:

 => true 
ruby-1.9.2-p290 :007 > 
link|improve this answer
feedback

The backtick operator captures the output of the command and returns it

s = `cls`
puts s

would work better, I guess.

link|improve this answer
1  
This fails: You get this irb(main):004:0> cls => "\f" – Orion Edwards Sep 23 '08 at 4:03
1  
Hm, yes it does. I wonder why. – JesperE Sep 23 '08 at 6:57
feedback

What I was looking for when I found this, was how to get a clean prompt in irb.
to do that, start irb with --simple-prompt

irb --simple-prompt

That will give you this: (sans quotes)
">>"

instead of this:
"ruby-1.9.2-p290 :007 >"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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