Posted by Stut on 01/13/06 16:55
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
[Back to original message]
|