>  ..... also a just starting with perl 
> 
> $wip = "\e[2J";
> print "$wip";
> 
> This will clear the screen but I have been trying to find out 
> why it doesnt place the cursor at 0,0
> 
> 
> I was considering 
> 
> $wip = `qx(clear)`; instead but this doesnt work either. 
> 

You either need `clear` or qx(clear) since qx() is the same as ``. 

Just FYI

DMuey

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to