On *nix, you can probably use ansi escape sequences to move the cursor around (untested):
sub moveTo{ my( $x, $y ) = @_; return chr(27) . "[$y;$xH"; } print moveTo( 25, 25), 'some text'; print moveTo( 10, 10 ), ' ';
In reply to Re^3: seek() command on STDOUT
by BrowserUk
in thread seek() command on STDOUT
by ybnormal
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |