<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Finding the same content in two files. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883167#M770933</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;my previous solution will show exactly the requested output!&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
    <pubDate>Fri, 20 Oct 2006 01:20:52 GMT</pubDate>
    <dc:creator>Peter Nikitka</dc:creator>
    <dc:date>2006-10-20T01:20:52Z</dc:date>
    <item>
      <title>Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883157#M770923</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I want to find (or) list the same contents are there in two files. &lt;BR /&gt;&lt;BR /&gt;Ex: Test1 &amp;amp; Test2 there are two files. If that two files are having the same words like "example". If I execute grep or diff or cmp commands, it should display the output "example" and what are all the same words it has.&lt;BR /&gt;&lt;BR /&gt;In which command, I can get this details.&lt;BR /&gt;&lt;BR /&gt;* It should work in SOLARIS also.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sudhakaran.K</description>
      <pubDate>Thu, 19 Oct 2006 09:22:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883157#M770923</guid>
      <dc:creator>sudhapage</dc:creator>
      <dc:date>2006-10-19T09:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883158#M770924</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;By "word" I presume that you mean a whitespace (space, tab or newline) delimited string of characters.&lt;BR /&gt;&lt;BR /&gt;If that's the case, you can create a simple Perl or awk script using hashes (associate arrays) to hold every word of each file.  Depending upon what it is that you want to report, process the hashes accordingly.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 19 Oct 2006 09:28:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883158#M770924</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-10-19T09:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883159#M770925</link>
      <description>Hi James,&lt;BR /&gt;&lt;BR /&gt;without space, newlines, tabs. I want the output.&lt;BR /&gt;&lt;BR /&gt;If there is any same contents, it should show.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sudhakaran.K</description>
      <pubDate>Thu, 19 Oct 2006 09:33:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883159#M770925</guid>
      <dc:creator>sudhapage</dc:creator>
      <dc:date>2006-10-19T09:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883160#M770926</link>
      <description>Do the common word(s) you want complete words or are they embedded within other words or strings or both; for example the word "for" occurs as a separate word on line 1 and part of the string "therefore" in line 2...&lt;BR /&gt;&lt;BR /&gt;now is the time for all&lt;BR /&gt;therefore</description>
      <pubDate>Thu, 19 Oct 2006 09:43:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883160#M770926</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-10-19T09:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883161#M770927</link>
      <description>Hi,&lt;BR /&gt;the way I read the request is:&lt;BR /&gt;1. Create an index of all the individual words in file1&lt;BR /&gt;2. Create an index of all the individual words in file2&lt;BR /&gt;3. Compare the two indexes and report on what words are common or not found&lt;BR /&gt;&lt;BR /&gt;If this is not correct, could you please supply some example file1 and file2 and the expected output.</description>
      <pubDate>Thu, 19 Oct 2006 10:02:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883161#M770927</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-10-19T10:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883162#M770928</link>
      <description>Take a look at the comm command, it my do what you need simply:&lt;BR /&gt;(The files have to be sorted though)&lt;BR /&gt;&lt;BR /&gt;comm - select or reject lines common to two sorted files&lt;BR /&gt;&lt;BR /&gt;For details man comm&lt;BR /&gt;&lt;BR /&gt;Chris&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Oct 2006 10:52:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883162#M770928</guid>
      <dc:creator>Christian Tremblay</dc:creator>
      <dc:date>2006-10-19T10:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883163#M770929</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;here is an example for 'comm' - the term 'same' is here seen as 'same line'.&lt;BR /&gt;&lt;BR /&gt;sort test1 &amp;gt;test1.sorted&lt;BR /&gt;sort test2 | comm -12 test1.sorted -&lt;BR /&gt;&lt;BR /&gt;You will get all common lines.&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Thu, 19 Oct 2006 12:59:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883163#M770929</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-10-19T12:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883164#M770930</link>
      <description>Hi &lt;BR /&gt;&lt;BR /&gt;Here I am explaning, what exactly i want.&lt;BR /&gt;&lt;BR /&gt;_________________________________________&lt;BR /&gt;&lt;BR /&gt;File "a" contents:&lt;BR /&gt;&lt;BR /&gt;apple&lt;BR /&gt;orange&lt;BR /&gt;egg&lt;BR /&gt;_________________________________________&lt;BR /&gt;&lt;BR /&gt;File "b" contents:&lt;BR /&gt;&lt;BR /&gt;sun&lt;BR /&gt;orange&lt;BR /&gt;space&lt;BR /&gt;_________________________________________&lt;BR /&gt;&lt;BR /&gt;My output should be: "orange"&lt;BR /&gt;_________________________________________&lt;BR /&gt;&lt;BR /&gt;So what are all the matching words, I wish to see in two files.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sudhakaran.K&lt;BR /&gt;</description>
      <pubDate>Thu, 19 Oct 2006 23:49:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883164#M770930</guid>
      <dc:creator>sudhapage</dc:creator>
      <dc:date>2006-10-19T23:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883165#M770931</link>
      <description>Could you not just sort both files and then run them through diff?&lt;BR /&gt;&lt;BR /&gt;sort file1&amp;gt; f1&lt;BR /&gt;sort file2&amp;gt; f2&lt;BR /&gt;diff f1 f2&lt;BR /&gt;&lt;BR /&gt;You could also use "sort -u" to remove duplicates.&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Oct 2006 00:07:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883165#M770931</guid>
      <dc:creator>Andrew Cowan</dc:creator>
      <dc:date>2006-10-20T00:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883166#M770932</link>
      <description>Hi Andrew,&lt;BR /&gt;&lt;BR /&gt;using diff command is not working after sorting.&lt;BR /&gt;&lt;BR /&gt;I am not getting the same words.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sudhakaran.K&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Oct 2006 00:37:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883166#M770932</guid>
      <dc:creator>sudhapage</dc:creator>
      <dc:date>2006-10-20T00:37:13Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883167#M770933</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;my previous solution will show exactly the requested output!&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Fri, 20 Oct 2006 01:20:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883167#M770933</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-10-20T01:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883168#M770934</link>
      <description>Hi peter,&lt;BR /&gt;&lt;BR /&gt;Yes it's working. I want to implement this command in working environment. The example scnerio is:&lt;BR /&gt;&lt;BR /&gt;The first file having word "solaris"&lt;BR /&gt;&lt;BR /&gt;The second file having word "install solaris"&lt;BR /&gt;&lt;BR /&gt;In this scnerio your command is not working!&lt;BR /&gt;&lt;BR /&gt;It's not displaying the word "solaris" in output.&lt;BR /&gt;&lt;BR /&gt;Please suggest.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sudhakaran.K</description>
      <pubDate>Fri, 20 Oct 2006 01:44:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883168#M770934</guid>
      <dc:creator>sudhapage</dc:creator>
      <dc:date>2006-10-20T01:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883169#M770935</link>
      <description>Hi,&lt;BR /&gt;based on my previous post:&lt;BR /&gt;$ cat a.pl&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;   @words = split(/\W+/);&lt;BR /&gt;   foreach (@words) {&lt;BR /&gt;           print "$_\n";&lt;BR /&gt;   } &lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;$ cat a.sh&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;# Create the index for file a&lt;BR /&gt;a.pl a &amp;gt; a.out&lt;BR /&gt;# Remove any duplicates out of index a&lt;BR /&gt;sort -uo a.sor a.out&lt;BR /&gt;rm a.out&lt;BR /&gt;# Create the index for file b&lt;BR /&gt;a.pl b &amp;gt; b.out&lt;BR /&gt;# Remove any duplicates out of index b&lt;BR /&gt;sort -uo b.sor b.out&lt;BR /&gt;rm b.out&lt;BR /&gt;# Print data that is common to both files&lt;BR /&gt;comm -12 a.sor b.sor&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Oct 2006 03:22:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883169#M770935</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-10-20T03:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883170#M770936</link>
      <description>Hi,&lt;BR /&gt;this runs fine on mu HPUX11i:&lt;BR /&gt;&lt;BR /&gt;/tmp/&amp;gt; cat a&lt;BR /&gt;apple&lt;BR /&gt;orange&lt;BR /&gt;egg&lt;BR /&gt;/tmp/&amp;gt; cat b&lt;BR /&gt;sun&lt;BR /&gt;orange&lt;BR /&gt;space&lt;BR /&gt;&amp;gt; grep -f a b&lt;BR /&gt;orange&lt;BR /&gt;&lt;BR /&gt;This command search all word in file a in file b and show the result.&lt;BR /&gt;I suggest you to use as first file the biggest file. Man grep for further info.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Fri, 20 Oct 2006 03:30:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883170#M770936</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2006-10-20T03:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883171#M770937</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you want to create output of each whitespace delimited string, do this, for example:&lt;BR /&gt;&lt;BR /&gt;# perl -nlaF -e 'print for (@F)' /etc/hosts&lt;BR /&gt;&lt;BR /&gt;Splitting on "word" characters with '\W' decomposes things like IP addresses, etc.  Compare the above output to:&lt;BR /&gt;&lt;BR /&gt;# perl -nl -e '@F=split(/\W+/);print for (@F)' /etc/hosts&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Fri, 20 Oct 2006 09:28:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883171#M770937</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-10-20T09:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883172#M770938</link>
      <description>&lt;!--!*#--&gt;&lt;BR /&gt;Try this:&lt;BR /&gt;&lt;BR /&gt;&amp;gt;perl -ne 'chomp; foreach (split) {if ($test) {print "$_\n" if delete $w{$_}} else {$w{$_}++}}; $test++ if eof' x.txt y.txt&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;In slow motion...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;#&amp;gt;perl -ne '         Start perl looping over input(s) using next string as program&lt;BR /&gt;# chomp;             Drop newline&lt;BR /&gt;# foreach (split) {  Loop over words in each input line split by whitespace&lt;BR /&gt;# if ($test) {       Test is set when first file gives EOF&lt;BR /&gt;# print "$_\n" if    Print the word but only if...&lt;BR /&gt;# delete $w{$_}      There was one deleted, thus present&lt;BR /&gt;# } else {           Not seen eof yet&lt;BR /&gt;# $w{$_}++}};        Remember each word in hash %w&lt;BR /&gt;# $test++ if eof'    Switch gears when eof seen&lt;BR /&gt;# x.txt y.txt        Sample input files.&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Oct 2006 13:15:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883172#M770938</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-10-20T13:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883173#M770939</link>
      <description>&lt;!--!*#--&gt;Try the script below and invoke as:&lt;BR /&gt;&lt;BR /&gt;# common.sh file1 file2&lt;BR /&gt;&lt;BR /&gt;=======================================================&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;trap ' rm tmpfile' 0&lt;BR /&gt;&lt;BR /&gt;while read line&lt;BR /&gt;do&lt;BR /&gt;   echo $line | awk '{for(i=1;i&amp;lt;=NF;i++) print $i}' &amp;gt; tmpfile&lt;BR /&gt;   while read word&lt;BR /&gt;   do&lt;BR /&gt;      grep -E "^$word | $word | $word[\.]$" $2 &amp;gt; /dev/null&lt;BR /&gt;      if [ $? -eq 0 ]; then&lt;BR /&gt;         echo $word &amp;gt;&amp;gt; awords&lt;BR /&gt;      fi&lt;BR /&gt;   done &amp;lt; tmpfile&lt;BR /&gt;done &amp;lt; $1&lt;BR /&gt;&lt;BR /&gt;if [ -s "awords" ]; then&lt;BR /&gt;   sort -uk1,1 awords &amp;gt; cwords &amp;amp;&amp;amp; rm awords&lt;BR /&gt;fi&lt;BR /&gt;=======================================================</description>
      <pubDate>Sat, 21 Oct 2006 02:45:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883173#M770939</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-10-21T02:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883174#M770940</link>
      <description>Hi Sandman,&lt;BR /&gt;&lt;BR /&gt;It sure looks like your solution would work from a functional perspective, but from a performance perspective it is just horrible!&lt;BR /&gt;The old n-square problem at its best.&lt;BR /&gt;- awk launched for every line in the first file.&lt;BR /&gt;- grep launched for every word in the first file.&lt;BR /&gt;- The second file read completely, over and over again, for every word in the first file.&lt;BR /&gt;Yikes!&lt;BR /&gt;&lt;BR /&gt;Please review the Peter's solution which nicely reduces each input to unique words first and then uses a simple tool to read and compare each sorted wordlist once.&lt;BR /&gt;&lt;BR /&gt;Cheers!&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# common.sh file1 file2&lt;BR /&gt;&lt;BR /&gt;=======================================================&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;&lt;BR /&gt;trap ' rm tmpfile' 0&lt;BR /&gt;&lt;BR /&gt;while read line&lt;BR /&gt;do&lt;BR /&gt;   echo $line | awk '{for(i=1;i&amp;lt;=NF;i++) print $i}' &amp;gt; tmpfile&lt;BR /&gt;   while read word&lt;BR /&gt;   do&lt;BR /&gt;      grep -E "^$word | $word | $word[\.]$" $2 &amp;gt; /dev/null&lt;BR /&gt;      if [ $? -eq 0 ]; then&lt;BR /&gt;         echo $word &amp;gt;&amp;gt; awords&lt;BR /&gt;      fi&lt;BR /&gt;   done &amp;lt; tmpfile&lt;BR /&gt;done &amp;lt; $1&lt;BR /&gt;&lt;BR /&gt;if [ -s "awords" ]; then&lt;BR /&gt;   sort -uk1,1 awords &amp;gt; cwords &amp;amp;&amp;amp; rm awords&lt;BR /&gt;fi&lt;BR /&gt;=======================================================</description>
      <pubDate>Sun, 22 Oct 2006 22:28:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883174#M770940</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-10-22T22:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: Finding the same content in two files.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883175#M770941</link>
      <description>Hi fellow posters,&lt;BR /&gt;I think we should give Sudhakaran some time to try out the various solutions and report back with his comments.</description>
      <pubDate>Mon, 23 Oct 2006 01:41:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/finding-the-same-content-in-two-files/m-p/3883175#M770941</guid>
      <dc:creator>Peter Godron</dc:creator>
      <dc:date>2006-10-23T01:41:24Z</dc:date>
    </item>
  </channel>
</rss>

