Wolf wrote:

Windows server, though I may dump it to linux to get my smaller file,
however not sure my admin would like that.  :)
Get a Windows build of grep (and other useful stuff) here: http://unxutils.sourceforge.net/

Albert wrote:
cat <filename> | grep <string> > <newfile>
Why cat? Sorry, but this is one of my pet hates! The following does the same but in one process instead of two.

   grep [string] [filename] > [newfile]

-Stut

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to