Re: What search string do I use on google or perldoc so that I know how to display a specified range of lines from a file (like sed -n 24, 48p filename)?

2004-10-23 Thread Bob Showalter
Ken Wolcott wrote: A fishing pole question rather than a fish question :-) What search string do I use on google or perldoc so that I know how to display a specified range of lines from a file (like sed -n 24, 48p filename)? Zeus gave you the solution, but the background is explained in perldoc pe

Re: What search string do I use on google or perldoc so that I know how to display a specified range of lines from a file (like sed -n 24, 48p filename)?

2004-10-23 Thread Zeus Odin
The following prints lines 24-48 of filename: prompt> perl -ne "print if 24..48" filename "Ken Wolcott" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > A fishing pole question rather than a fish question :-) > > What search string do I use on google or perldoc so that I know how to

Re: What search string do I use on google or perldoc ...

2004-10-22 Thread David le Blanc
On Sat, 23 Oct 2004 00:32:09 +0200, Jenda Krynicky <[EMAIL PROTECTED]> wrote: > From: Ken Wolcott <[EMAIL PROTECTED]> > > What search string do I use on google or perldoc so that I know how to > > display a specified range of lines from a file (like sed -n 24, 48p > > filename)? Have you considere

Re: What search string do I use on google or perldoc ...

2004-10-22 Thread Jenda Krynicky
From: Ken Wolcott <[EMAIL PROTECTED]> > What search string do I use on google or perldoc so that I know how to > display a specified range of lines from a file (like sed -n 24, 48p > filename)? Whatever you like. I doubt you'll find anything. > s2p no longer operates the way I used to use it bac