----- Original Message -----
From: "Gary Hawkins" <[EMAIL PROTECTED]>
To: "Hewlett Pickens" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>


> Seems a good example of how every little question has some merit.  You
just
> never know.

I sure agree with you on this.

> I've had the same problem on Windows 2000 and have been using edit.com to
find
> line numbers in my scripts, and it isn't real handy; it opens a small
window,
> navigation is slow, etc.  There is probably a Windows port of vi, but I
prefer
> Notepad.

Currently, I am using MSWords to seek the line numbers, not so effective
though, but is better than none. Previouly I used to have a "Perl editor"
but I forgot where I download it from.

> So Hewlett's question gave me an idea.  Just print my scripts to the
screen
> with line numbers added.  My life is now better.  Sure beats arrow-down
> counting.

I would prefer to read it from something whereby i could scroll up or down,
therefore i prefer to read it from the Internet explorer. How about having a
script that put line numbers on our script like this :-

{
my $count = 0;
open FILE, 'perl_script.pl' or die "$!\n";
while (<FILE>){
         $count++;
         print "Line $count: $_";
};
close FILE;
};



_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


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

Reply via email to