<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<div class="moz-cite-prefix">On 08/07/2013 12:37 PM, Jim Kinney
wrote:<br>
</div>
<blockquote
cite="mid:CAEo=5Pw-yOXxkJn4_wQ-UJ8mHWzuNKkTYbG99egW6o7XPHhZxA@mail.gmail.com"
type="cite">Ideas on how to tell diff to ignore the line count
between lines? Basically all I want is a fast "these lines are not
in the other file" for both files.</blockquote>
<br>
cat file1 file2 | sort > _tmp0.out<br>
uniq -u < _tmp0.out<br>
<br>
Example:<br>
<pre>[mbt@aloe ~]$ cat > a.txt
abcd
efgh
ijkl
[mbt@aloe ~]$ cat > b.txt
efgh
ijkl
mnop
[mbt@aloe ~]$ cat {a,b}.txt|sort|uniq -u
abcd
mnop</pre>
<br>
<div class="moz-signature">-- <br>
<table border="0">
<tbody>
<tr>
<td> <img src="cid:part1.00060305.06020902@naunetcorp.com"
alt="Naunet Corporation Logo"> </td>
<td> Michael B. Trausch<br>
<br>
President, <strong>Naunet Corporation</strong><br>
☎ (678) 287-0693 x130 or (888) 494-5810 x130<br>
<br>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>