Re: screen size question

2003-03-27 Thread John W. Krahn
[EMAIL PROTECTED] wrote: > > 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

RE: screen size question

2003-03-27 Thread Jeff Westman
Good info Peter. As a side note too, this group is about "beginners", or basic perl, or those things pertaining to perl that we all need help on every now and then. I don't think the focus is CGI programming per se, but perl in general. It's a great group, and I personally have benefited tremend

Re: screen size question

2003-03-27 Thread Jimstone77
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 -siz

Re: screen size question

2003-03-27 Thread Jeff Westman
> thanks > Lou > > > > - Original Message - > From: "Jeff Westman" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, March 27, 2003 3:16 PM > Subject: Re: screen size question > > > > system("stty -a&