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

How do you clear the IRB console screen?

share|improve this question

12 Answers

up vote 87 down vote accepted

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

share|improve this answer
6  
On Mac OS X, cmd+K will also work. – fanaugen Jun 27 '12 at 18:34

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

def cls
  system('cls')
end

[Source]

share|improve this answer
5  
I should clarify that this applies to Windows only. – Ben Hoffstein Sep 22 '08 at 18:27
2  
You can also do system('clear') on linux and it works fine – Orion Edwards Sep 23 '08 at 4:02
1  
system('clear') will also work on a Mac. It should be noted that this will leave => true at the top of the console. – Michael Dorst Mar 26 at 5:49

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 > 
share|improve this answer
nice answer! works for me for ruby console – lesyk May 24 '12 at 16:52

on *nix boxes

`clear`

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

EDIT:

Interesting:

system 'cls' # works
`cls` # does not work
share|improve this answer

Cmd + K in MacOSX works great.

share|improve this answer
puts `clear`

Clears the screen and then returns => nil Tested on Mac OSX 10.6 Terminal and iTerm2.

share|improve this answer

In order to clear the screen just do a puts on "\e[H\e[2J"

P.S. Tested on linux

share|improve this answer

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.

1.9.3-p125 :151 >   system 'reset'

finally did the trick for me!

share|improve this answer
simplify it using back ticks: `reset`. – the Tin Man Oct 27 '12 at 5:20

For windows users...

If you create a bat file name c.bat whose contents are:

@echo off
cls

then in irb you can say:

system('c')

to clear the console...i just thought i would share cause i thought that was pretty cool...essentially anything in the path is accessible

share|improve this answer

Command + K or Ctrl + L on Mac

share|improve this answer

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

s = `cls`
puts s

would work better, I guess.

share|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

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<br/><br/>

That will give you this: (sans quotes)

>>

instead of this:

ruby-1.9.2-p290 :007 >
share|improve this answer

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.