In a message dated 3/27/03 5:41:14 PM Eastern Standard Time, [EMAIL PROTECTED] writes:
> perl -e ' > @x = qx(stty -a); > @y = split(/\s/, $x[1]); > $y[2] =~ s/;//; > print "screen size is $y[2] x $y[5]" > ' > > "stty -a" works on every *nix system I know. Some systems have 'stty -size' > to help with exactly what you are asking. > > Hope that helps. > Thanks a Lot! I didn't think that question would ever get answered. Much appreciated.