----- Original Message ----- From: "Goran Jovanovic" <[EMAIL PROTECTED]>
> Find /V "PhraseA" orig.txt >temp1.txt > Find /V "PhraseB" temp1.txt >temp2.txt > Find /V "PhraseC" temp2.txt >final.txt > > Now if this is all I had to do OK fine but over time I am going to > accumulate more things to remove. So is there any way to pass the find > command a list of things to remove and do it all in one shot? Why not use grep: egrep -v "PhraseA|PhraseB|PhraseC" > final.txt Bill --- [This E-mail was scanned for viruses by Declude Virus (http://www.declude.com)] --- This E-mail came from the Declude.JunkMail mailing list. To unsubscribe, just send an E-mail to [EMAIL PROTECTED], and type "unsubscribe Declude.JunkMail". The archives can be found at http://www.mail-archive.com.
