On Sat, Feb 08, 2003 at 11:08:56PM -0600, Doug Poland wrote:

[...]
> I would like to see all the lines in fileC that are not in fileA or
> fileB.  In my case, I may be seraching against many files, i.e., 
> (A,B,C,etc...)
> 

How about:

    cat fileA fileB | sort | comm -1 -3 - fileC

-- 
Jonathan Chen <[EMAIL PROTECTED]>
----------------------------------------------------------------------
                                      Opportunities are seldom labeled

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message

Reply via email to