I need to write a perl script that would clear the screen like the MS-DOS command CLS does. Can Anyone please help?? If do not want to write me the script, can u give a hint plz???
system(”clear”);
if that doesn't work you might want to replace "clear" with "cls"
Clear might only work on Unix systems... the cls command is a windows command so if you are writing perl script in windows I suggest using the system command with cls.