vote up 4 vote down star
1

How do you clear the IRB console screen?

flag

4 Answers

vote up 0 vote down

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

s = `cls`
puts s

would work better, I guess.

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

on *nix boxes

`clear`

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

EDIT:

Interesting:

system 'cls' #works,
`cls` does not.
link|flag
vote up 5 vote down

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

def cls
  system('cls')
end

[Source]

link|flag
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
vote up 6 vote down check

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

link|flag

Your Answer

Get an OpenID
or

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