Help for this page

Select Code to Download


  1. or download this
      use Term::ReadKey;
      ($wchar, $hchar, $wpixels, $hpixels) = GetTerminalSize();
    
  2. or download this
      require 'sys/ioctl.ph';
      die "no TIOCGWINSZ " unless defined &TIOCGWINSZ;
    ...
      print "(row,col) = ($row,$col)";
      print "  (xpixel,ypixel) = ($xpixel,$ypixel)" if $xpixel || $ypixel;
      print "\n";