Ideally, something cross-platform.
|
1
|
|||
|
|
|
The CPAN is probably the best way to go. Take a look at Term::Screen:Uni:
|
||
|
|
|
|
print "\033[2J"; #clear the screen print "\033[0;0H"; #jump to 0,0 |
||
|
|
|
|
I generally use Term::ANSIScreen from CPAN which gives me all sorts of useful console-related features.
|
||
|
|
|
|
No external library required (not that there's anything wrong with CPAN or Curses). |
||||
|
|
|
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:
|
||
|
|
