vote up 3 vote down star
1

Ideally, something cross-platform.

flag

A console screen or a GUI screen? – Steve Moyer Oct 13 '08 at 15:14

5 Answers

vote up 10 vote down check

The CPAN is probably the best way to go. Take a look at Term::Screen:Uni:

require Term::Screen::Uni;
my $scr = new Term::Screen::Uni;

$scr->clrscr()
link|flag
vote up 0 vote down

print "\033[2J"; #clear the screen print "\033[0;0H"; #jump to 0,0

link|flag
vote up 7 vote down

I generally use Term::ANSIScreen from CPAN which gives me all sorts of useful console-related features.

use Term::ANSIScreen qw(cls);
cls();
link|flag
vote up 3 vote down
system(($^O eq 'MSWin32') ? 'cls' : 'clear');

No external library required (not that there's anything wrong with CPAN or Curses).

link|flag
Not everything that isn't Windows has a clear. :) – brian d foy Oct 13 '08 at 21:48
Can you give an example? – Bill the Lizard Oct 14 '08 at 11:50
vote up 6 vote down

If you are talking about a terminal, I would use something like the Curses lib to do it.

There is a nice Curses module to access it, which you can use like this:

perl -MCurses -e '$win=new Curses;$win->clear()'
link|flag

Your Answer

Get an OpenID
or

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