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
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
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
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