<?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: script - comparing two files in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940292#M411577</link>
    <description>Answer is,&lt;BR /&gt;&lt;BR /&gt;# cat &amp;gt; file1&lt;BR /&gt;hi&lt;BR /&gt;bye&lt;BR /&gt;# cat &amp;gt; file2&lt;BR /&gt;ok&lt;BR /&gt;sure&lt;BR /&gt;bye&lt;BR /&gt;noe&lt;BR /&gt;hi&lt;BR /&gt;# grep -vf file1 file2&lt;BR /&gt;ok&lt;BR /&gt;sure&lt;BR /&gt;noe&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;Hope this is the one you wanted?</description>
    <pubDate>Mon, 14 Nov 2005 06:02:55 GMT</pubDate>
    <dc:creator>Muthukumar_5</dc:creator>
    <dc:date>2005-11-14T06:02:55Z</dc:date>
    <item>
      <title>script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940290#M411575</link>
      <description>Guys,&lt;BR /&gt;&lt;BR /&gt;I have two files with a big list of entries in each of them. I need to compare all the entries in file1 with that of file2 and check which of them do not exist in file2. However they are not necessarily in the same order in both the files, ie an entry could be at the top of file1 and in the middle of file2. I am trying to write a script to do this. Any helpful tips?</description>
      <pubDate>Mon, 14 Nov 2005 05:56:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940290#M411575</guid>
      <dc:creator>Ravinder Singh Gill</dc:creator>
      <dc:date>2005-11-14T05:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940291#M411576</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you could use &lt;BR /&gt;comm&lt;BR /&gt;for that purpose, but that assumes that the files have beeen sorted first.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Mon, 14 Nov 2005 05:58:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940291#M411576</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2005-11-14T05:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940292#M411577</link>
      <description>Answer is,&lt;BR /&gt;&lt;BR /&gt;# cat &amp;gt; file1&lt;BR /&gt;hi&lt;BR /&gt;bye&lt;BR /&gt;# cat &amp;gt; file2&lt;BR /&gt;ok&lt;BR /&gt;sure&lt;BR /&gt;bye&lt;BR /&gt;noe&lt;BR /&gt;hi&lt;BR /&gt;# grep -vf file1 file2&lt;BR /&gt;ok&lt;BR /&gt;sure&lt;BR /&gt;noe&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;Hope this is the one you wanted?</description>
      <pubDate>Mon, 14 Nov 2005 06:02:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940292#M411577</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-14T06:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940293#M411578</link>
      <description>First sort files.&lt;BR /&gt;&lt;BR /&gt;sort &amp;lt; file1 &amp;gt; file1-1&lt;BR /&gt;sort &amp;lt; file2 &amp;gt; file2-2&lt;BR /&gt;&lt;BR /&gt;Now &lt;BR /&gt;comm -13 file1-1 file2-2&lt;BR /&gt;&lt;BR /&gt;You may also look at bdiff, diff, cmp commands.</description>
      <pubDate>Mon, 14 Nov 2005 06:04:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940293#M411578</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2005-11-14T06:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940294#M411579</link>
      <description>I was thinking of keeping it simpler i.e. something as below but will it not work?&lt;BR /&gt;&lt;BR /&gt;While read Variable&lt;BR /&gt;&lt;BR /&gt;do&lt;BR /&gt;more file2 | grep Variable&lt;BR /&gt;&lt;BR /&gt;#put in entries to say if it does not exist&lt;BR /&gt;#then output that variable to file3.&lt;BR /&gt;&lt;BR /&gt;done &amp;lt; file1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Would something like this work? If so how do I instruct it to redirect the variable to another file if it did not exist in file2??&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Nov 2005 06:08:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940294#M411579</guid>
      <dc:creator>Ravinder Singh Gill</dc:creator>
      <dc:date>2005-11-14T06:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940295#M411580</link>
      <description>Your code looks ok but a little too complicated. You have more file2|grep Variable, whereas:&lt;BR /&gt;&lt;BR /&gt;grep Variable file2&lt;BR /&gt;&lt;BR /&gt;would achieve exactly the same result.&lt;BR /&gt;&lt;BR /&gt;You could either send the output to file3 within the loop or on the command line. Command line version:&lt;BR /&gt;&lt;BR /&gt;scriptname &amp;gt; outputfile&lt;BR /&gt;&lt;BR /&gt;Mark Syder (like the drink but spelt different)</description>
      <pubDate>Mon, 14 Nov 2005 06:13:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940295#M411580</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2005-11-14T06:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940296#M411581</link>
      <description>Thanks for that, but I do not want to send the output to a file. I wish to send the variable to a third file if it does exist in file1 and does not exist in file 2.&lt;BR /&gt;&lt;BR /&gt;Any ideas?&lt;BR /&gt;</description>
      <pubDate>Mon, 14 Nov 2005 06:16:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940296#M411581</guid>
      <dc:creator>Ravinder Singh Gill</dc:creator>
      <dc:date>2005-11-14T06:16:14Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940297#M411582</link>
      <description>Try this:&lt;BR /&gt;&lt;BR /&gt;if grep Variable file1&lt;BR /&gt;then&lt;BR /&gt;do&lt;BR /&gt;echo Variable &amp;gt;&amp;gt; file3&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;The &amp;gt;&amp;gt; means append - if you use &amp;gt; every time you find a variable the file will be overwritten. It's probably a good idea to null the file before the loop starts.&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Mon, 14 Nov 2005 06:21:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940297#M411582</guid>
      <dc:creator>MarkSyder</dc:creator>
      <dc:date>2005-11-14T06:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940298#M411583</link>
      <description>grep -vf file2 file1 &amp;gt; file2&lt;BR /&gt;&lt;BR /&gt;hth</description>
      <pubDate>Mon, 14 Nov 2005 06:21:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940298#M411583</guid>
      <dc:creator>Orhan Biyiklioglu</dc:creator>
      <dc:date>2005-11-14T06:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940299#M411584</link>
      <description>Simply change my reply:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# cat file1&lt;BR /&gt;bye&lt;BR /&gt;hi&lt;BR /&gt;not existing&lt;BR /&gt;# cat file2&lt;BR /&gt;ok&lt;BR /&gt;sure&lt;BR /&gt;bye&lt;BR /&gt;noe&lt;BR /&gt;hi&lt;BR /&gt;# grep -vf file2 file1&lt;BR /&gt;not existing&lt;BR /&gt;# grep -vf file2 file1 &amp;gt; file3&lt;BR /&gt;&lt;BR /&gt;Hope this one rgt.</description>
      <pubDate>Mon, 14 Nov 2005 06:23:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940299#M411584</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-14T06:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940300#M411585</link>
      <description>grep -vf file2 file1 &amp;gt; file2&lt;BR /&gt;Good Luck,</description>
      <pubDate>Mon, 14 Nov 2005 06:30:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940300#M411585</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2005-11-14T06:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940301#M411586</link>
      <description>grep -vf file2 file1 &amp;gt; file2&lt;BR /&gt;&lt;BR /&gt;this will not work. It is dangerous more. It will change file2 contents more.&lt;BR /&gt;&lt;BR /&gt;# cat file1&lt;BR /&gt;bye&lt;BR /&gt;hi&lt;BR /&gt;not existing&lt;BR /&gt;# cat file2&lt;BR /&gt;ok&lt;BR /&gt;sure&lt;BR /&gt;bye&lt;BR /&gt;noe&lt;BR /&gt;hi&lt;BR /&gt;#&lt;BR /&gt;# grep -vf file2 file1 &amp;gt; file2&lt;BR /&gt;#&lt;BR /&gt;# cat file2&lt;BR /&gt;bye&lt;BR /&gt;hi&lt;BR /&gt;not existing&lt;BR /&gt;&lt;BR /&gt;Try to redirect to another file called file3.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Mon, 14 Nov 2005 06:35:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940301#M411586</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-14T06:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940302#M411587</link>
      <description>Muthukumar is right.&lt;BR /&gt;&lt;BR /&gt;Sorry for the typo.&lt;BR /&gt;&lt;BR /&gt;It should be &lt;BR /&gt;&lt;BR /&gt;grep -vf file2 file1 &amp;gt; file3&lt;BR /&gt;&lt;BR /&gt;hth</description>
      <pubDate>Mon, 14 Nov 2005 06:39:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940302#M411587</guid>
      <dc:creator>Orhan Biyiklioglu</dc:creator>
      <dc:date>2005-11-14T06:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940303#M411588</link>
      <description>Hi again,&lt;BR /&gt;&lt;BR /&gt;if I understand it correctly you want to compare lines(names) in file1 to lines in file2 and then write to file3 the names that are not common in both files.&lt;BR /&gt;You can do this by the following script, compare.sh:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;while read name&lt;BR /&gt;do&lt;BR /&gt;        grep -qc $name $1  1&amp;gt;/dev/null&lt;BR /&gt;        if [ "$?" != 0 ]&lt;BR /&gt;        then&lt;BR /&gt;                echo $name &amp;gt;&amp;gt; $3&lt;BR /&gt;        fi&lt;BR /&gt;done &amp;lt; $2&lt;BR /&gt;&lt;BR /&gt;however, you have to run it twice, e.g. like this:&lt;BR /&gt;# compare.sh file1 file2 file3&lt;BR /&gt;and then&lt;BR /&gt;# compare.sh file1 file2 file3&lt;BR /&gt;&lt;BR /&gt;for first writing to file3 the names that exist in file1 but not in file2 and then second run for writing(appending) the vice-versa occurrances..&lt;BR /&gt;&lt;BR /&gt;Try first running it first like this;&lt;BR /&gt;# compare.sh file1 file2&lt;BR /&gt;in order to check the result, and remember each run appends to file3&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Mon, 14 Nov 2005 07:22:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940303#M411588</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2005-11-14T07:22:09Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940304#M411589</link>
      <description>This, and much similar questions have been asked several times before in this forum. Google will readily find them with: +"compare files" +site:itrc.hp.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=414769" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=414769&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;That question was concerned with detail layout of the lines, you may also have optional input in that space.&lt;BR /&gt;Taken the solution there in generic for a solution for your problem could be...&lt;BR /&gt;&lt;BR /&gt;perl compare.pl file1 file2&lt;BR /&gt;&lt;BR /&gt;---- compare.pl -------------&lt;BR /&gt;&lt;BR /&gt;$file1 = shift @ARGV;&lt;BR /&gt;$file2 = shift @ARGV or die;&lt;BR /&gt;open (FILE, "&amp;lt;$file1");&lt;BR /&gt;while (&lt;FILE&gt;) {&lt;BR /&gt;chomp;&lt;BR /&gt;$x{$_}=1;&lt;BR /&gt;}&lt;BR /&gt;close (FILE);&lt;BR /&gt;open (FILE, "&amp;lt;$file2");&lt;BR /&gt;while (&lt;FILE&gt;) {&lt;BR /&gt;chomp;&lt;BR /&gt;if (defined $x{$_}) {&lt;BR /&gt;  $x{$_}=2;&lt;BR /&gt;  } else {&lt;BR /&gt; $x{$_} =3; # report only once per matching line&lt;BR /&gt;print "Not in file 1: $_\n";&lt;BR /&gt; }&lt;BR /&gt;}&lt;BR /&gt;foreach (keys %x) {&lt;BR /&gt; print "Not in file 2: $_\n" if ($x{$_} == 1) ;&lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt;-------------------&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;/FILE&gt;&lt;/FILE&gt;</description>
      <pubDate>Mon, 14 Nov 2005 08:04:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940304#M411589</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2005-11-14T08:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940305#M411590</link>
      <description>Hi Ravinder ,&lt;BR /&gt;&lt;BR /&gt;You can also use the diff command.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Mon, 14 Nov 2005 09:00:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940305#M411590</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2005-11-14T09:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940306#M411591</link>
      <description>cat file1&lt;BR /&gt;goodbye&lt;BR /&gt;nostuff&lt;BR /&gt;hello&lt;BR /&gt;morestuff&lt;BR /&gt;stuff&lt;BR /&gt;&lt;BR /&gt;cat file2&lt;BR /&gt;just stuff&lt;BR /&gt;stuff&lt;BR /&gt;nostuff&lt;BR /&gt;hello&lt;BR /&gt;&lt;BR /&gt;########&lt;BR /&gt;sort file1 -o file3   #lets not screw up orgs&lt;BR /&gt;sort file2 -o file4   &lt;BR /&gt;&lt;BR /&gt;comm -23 file3 file4&lt;BR /&gt;goodbye&lt;BR /&gt;morestuff&lt;BR /&gt;&lt;BR /&gt;or &lt;BR /&gt;comm -23 file3 file4 &amp;gt; lines_not_in_file1&lt;BR /&gt;&lt;BR /&gt;Rory</description>
      <pubDate>Mon, 14 Nov 2005 23:41:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940306#M411591</guid>
      <dc:creator>Rory R Hammond</dc:creator>
      <dc:date>2005-11-14T23:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940307#M411592</link>
      <description>Can anyone tell me what is wrong with the following script?&lt;BR /&gt;&lt;BR /&gt;While read Variable&lt;BR /&gt;do&lt;BR /&gt;grep Variable file2&lt;BR /&gt;&lt;BR /&gt;if&lt;BR /&gt;[ $? != 0 ]&lt;BR /&gt;then&lt;BR /&gt;Variable &amp;gt;&amp;gt; file3&lt;BR /&gt;fi&lt;BR /&gt;done &amp;lt; file1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Remember I want to output the variable to file3 only if it exists in file1 but NOT in file2.</description>
      <pubDate>Tue, 15 Nov 2005 05:29:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940307#M411592</guid>
      <dc:creator>Ravinder Singh Gill</dc:creator>
      <dc:date>2005-11-15T05:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940308#M411593</link>
      <description>Use this:&lt;BR /&gt;&lt;BR /&gt;rm -f file3&lt;BR /&gt;while read Variable&lt;BR /&gt;do&lt;BR /&gt;grep -q $Variable file2&lt;BR /&gt;&lt;BR /&gt;if [ $? != 0 ]&lt;BR /&gt;then&lt;BR /&gt; echo $Variable &amp;gt;&amp;gt; file3&lt;BR /&gt;fi&lt;BR /&gt;done &amp;lt; file1&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Tue, 15 Nov 2005 05:37:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940308#M411593</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-15T05:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: script - comparing two files</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940309#M411594</link>
      <description>A small correction.&lt;BR /&gt;&lt;BR /&gt;When you are having a line like,&lt;BR /&gt;&lt;BR /&gt;word1 word2 ... wordn then,&lt;BR /&gt;&lt;BR /&gt;grep -q $Variable file2 will make problem. It is reading without space only. To avoid that,&lt;BR /&gt;&lt;BR /&gt;use:&lt;BR /&gt;&lt;BR /&gt;rm -f file3&lt;BR /&gt;while read Variable&lt;BR /&gt;do&lt;BR /&gt;# New change for above correction.&lt;BR /&gt;grep -q "$Variable" file2&lt;BR /&gt;&lt;BR /&gt;if [ $? != 0 ]&lt;BR /&gt;then&lt;BR /&gt; echo $Variable &amp;gt;&amp;gt; file3&lt;BR /&gt;fi&lt;BR /&gt;done &amp;lt; file1&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Tue, 15 Nov 2005 05:42:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/script-comparing-two-files/m-p/4940309#M411594</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-11-15T05:42:39Z</dc:date>
    </item>
  </channel>
</rss>

