From owner-freebsd-questions@FreeBSD.ORG Sat May 7 02:23:48 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7282106566C for ; Sat, 7 May 2011 02:23:48 +0000 (UTC) (envelope-from listreader@lazlarlyricon.com) Received: from mailgw12.surf-town.net (mail8.surf-town.net [212.97.132.48]) by mx1.freebsd.org (Postfix) with ESMTP id 9F3EE8FC0A for ; Sat, 7 May 2011 02:23:48 +0000 (UTC) Received: by mailgw12.surf-town.net (Postfix, from userid 65534) id 88E2D138969; Sat, 7 May 2011 04:23:47 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mailgw12.surf-town.net (Postfix) with ESMTP id 73A6F138967 for ; Sat, 7 May 2011 04:23:47 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mailgw12.surf-town.net X-Spam-Flag: NO X-Spam-Score: -1.44 X-Spam-Level: X-Spam-Status: No, score=-1.44 tagged_above=-999 required=7 tests=[ALL_TRUSTED=-1.44] Received: from mailgw12.surf-town.net ([127.0.0.1]) by localhost (mailgw12.surf-town.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8+MHfTX50yHU for ; Sat, 7 May 2011 04:23:42 +0200 (CEST) Received: from lazlar.kicks-ass.net (c-0987e355.09-42-6e6b7010.cust.bredbandsbolaget.se [85.227.135.9]) by mailgw12.surf-town.net (Postfix) with ESMTPA id 05CB713895D for ; Sat, 7 May 2011 04:23:41 +0200 (CEST) Message-ID: <4DC4AD2C.30307@lazlarlyricon.com> Date: Sat, 07 May 2011 04:23:40 +0200 From: Rolf Nielsen User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; sv-SE; rv:1.9.2.17) Gecko/20110502 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: FreeBSD References: <4DC48DB6.8030907@lazlarlyricon.com> In-Reply-To: <4DC48DB6.8030907@lazlarlyricon.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Comparing two lists [SOLVED (at least it looks like that)] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 May 2011 02:23:49 -0000 2011-05-07 02:09, Rolf Nielsen skrev: > Hello all, > > I have two text files, quite extensive ones. They have some lines in > common and some lines are unique to one of the files. The lines that do > exist in both files are not necessarily in the same location. Now I need > to compare the files and output a list of lines that exist in both > files. Is there a simple way to do this? diff? awk? sed? cmp? Or a > combination of two or more of them? > > TIA, > > Rolf sort file1 file2 | uniq -d