From: "Iñaki Baz Castillo" Date: 2008-09-02T05:33:20+09:00 Subject: Re: Command to clean the screen in IRB? (like when pressing "Ctrl+L") [SOLVED] El Lunes, 1 de Septiembre de 2008, Iñaki Baz Castillo escribió: > Hi, I expect there is a command to clean the screen during an IRB session > (in fact you can press Ctrl+L to do it, but I'm lookinf for a Ruby > command). What is that command? Well, after looking I've found that there is not such command, but some workarounds: print "\e[2J\e[f" or: system("clear") -- Iñaki Baz Castillo