<?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: Selecting Unique Values from many List in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172053#M458243</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you don't mind sorting and you want one list when done:&lt;BR /&gt;&lt;BR /&gt;# sort -u file1 file2 file3 ...&lt;BR /&gt;&lt;BR /&gt;or if the filenames are similar:&lt;BR /&gt;&lt;BR /&gt;# sort -u f[0-9]*&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Mon, 27 Apr 2009 18:19:45 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2009-04-27T18:19:45Z</dc:date>
    <item>
      <title>Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172052#M458242</link>
      <description>I have a question which is giving me a serious problem&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have like 19 different list which contains the name of the server but what I need is just unique ones.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;First thing I need to do is just make a unique list within the list itself &lt;BR /&gt;&lt;BR /&gt;i.e. delete anything that is repeated inside the list&lt;BR /&gt;&lt;BR /&gt;like for example&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;in list1&lt;BR /&gt;&lt;BR /&gt;i have &lt;BR /&gt;&lt;BR /&gt;a &lt;BR /&gt;&lt;BR /&gt;b&lt;BR /&gt;&lt;BR /&gt;c&lt;BR /&gt;&lt;BR /&gt;d&lt;BR /&gt;&lt;BR /&gt;e&lt;BR /&gt;&lt;BR /&gt;a&lt;BR /&gt;&lt;BR /&gt;c&lt;BR /&gt;&lt;BR /&gt;f&lt;BR /&gt;&lt;BR /&gt;g&lt;BR /&gt;&lt;BR /&gt;h&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;so i just need is a b c d e f g h i mean unique values which is easier anyone can do it i guess.&lt;BR /&gt;&lt;BR /&gt;For the first list its ok &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Like that i have 19 liist and i have to do that the same thing which is ok not that hard&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;the problem is now,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;there should not be anything repeating in any one of those list &lt;BR /&gt;&lt;BR /&gt;i.e. if something is there in the first list means that should not be in 2nd list and so on. so that means&lt;BR /&gt;&lt;BR /&gt;for the first list its ok i dont need to do anything as it is after deleting the duplicates&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;second list I have to compare with the first list and delete if anything from the first list &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;third list i have to compare with first and second list and anything present in first or second list I have to delete from third list and so on upto 19 list &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Plz can anyone suggest me how can i do that&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;let me know if anything confusing&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;just i want is not repeated in any one of those 19 list i hope thats pretty much clear&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks In advance&lt;BR /&gt;&lt;BR /&gt;its serious problem im having&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2009 18:11:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172052#M458242</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T18:11:50Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172053#M458243</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you don't mind sorting and you want one list when done:&lt;BR /&gt;&lt;BR /&gt;# sort -u file1 file2 file3 ...&lt;BR /&gt;&lt;BR /&gt;or if the filenames are similar:&lt;BR /&gt;&lt;BR /&gt;# sort -u f[0-9]*&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 27 Apr 2009 18:19:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172053#M458243</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-04-27T18:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172054#M458244</link>
      <description>Thaks James but looks like you dint get what my problem is&lt;BR /&gt;&lt;BR /&gt;I dont want one list i want all the 19 list but &lt;BR /&gt;&lt;BR /&gt;there should not be anything repeating in any one of those list &lt;BR /&gt;&lt;BR /&gt;i.e. if something is there in the first list means that should not be in 2nd list and so on. so that means&lt;BR /&gt;&lt;BR /&gt;for the first list its ok i dont need to do anything as it is after deleting the duplicates&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;second list I have to compare with the first list and delete if anything from the first list &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;third list i have to compare with first and second list and anything present in first or second list I have to delete from third list and so on upto 19 list &lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Mon, 27 Apr 2009 18:40:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172054#M458244</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T18:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172055#M458245</link>
      <description>so, for each of the 19 files, you want to find only the unique entries *within* that file....&lt;BR /&gt;&lt;BR /&gt;and then for each of those nineteen, you want to remove any entries which appear in the prior "x" files?????&lt;BR /&gt;&lt;BR /&gt;such that when working with the 16th file, any entry in 16 which appears in 1-15 should be ommitted?????&lt;BR /&gt;&lt;BR /&gt;"sort -u file1 &amp;gt; file1s" will get you the unique values and needs to be done for each file....&lt;BR /&gt;&lt;BR /&gt;using those results, you can do:&lt;BR /&gt;&lt;BR /&gt;grep -v -f file1s -f file2s -f file3s ....&lt;BR /&gt;-f file15s file16u &amp;gt; file16su&lt;BR /&gt;&lt;BR /&gt;would remove any entries occuring the sorted/unique results of 1-15 from the 16, leaving only those unique to 16.</description>
      <pubDate>Mon, 27 Apr 2009 18:55:12 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172055#M458245</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-04-27T18:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172056#M458246</link>
      <description>&lt;!--!*#--&gt;&amp;gt; [...] looks like you dint get what my&lt;BR /&gt;&amp;gt; problem is&lt;BR /&gt;&lt;BR /&gt;He's not alone.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Perhaps you could show us what you want to&lt;BR /&gt;get, instead of trying to describe it.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Perhaps more blank lines would help.</description>
      <pubDate>Mon, 27 Apr 2009 18:56:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172056#M458246</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2009-04-27T18:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172057#M458247</link>
      <description>Hi (again):&lt;BR /&gt;&lt;BR /&gt;OK, let's see if this gives you what you want:&lt;BR /&gt;&lt;BR /&gt;# cat ./reduce&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;my %seen;&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    print;&lt;BR /&gt;    chomp;&lt;BR /&gt;    $seen{$_}++;&lt;BR /&gt;    if (eof) {&lt;BR /&gt;        print "------\n";&lt;BR /&gt;        last;&lt;BR /&gt;    }&lt;BR /&gt;}&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    chomp;&lt;BR /&gt;    print "$_\n" unless exists $seen{$_};&lt;BR /&gt;    $seen{$_}++;&lt;BR /&gt;    print "------\n" if eof;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;...Run as:&lt;BR /&gt;&lt;BR /&gt;# ./reduce f1 f2 f3 ...&lt;BR /&gt;&lt;BR /&gt;For example, given:&lt;BR /&gt;&lt;BR /&gt;# cat f1&lt;BR /&gt;a&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;d&lt;BR /&gt;e&lt;BR /&gt;f&lt;BR /&gt;&lt;BR /&gt;# cat f2&lt;BR /&gt;a&lt;BR /&gt;c&lt;BR /&gt;f&lt;BR /&gt;g&lt;BR /&gt;h&lt;BR /&gt;i&lt;BR /&gt;&lt;BR /&gt;# cat f3&lt;BR /&gt;a&lt;BR /&gt;f&lt;BR /&gt;h&lt;BR /&gt;i&lt;BR /&gt;k&lt;BR /&gt;l&lt;BR /&gt;m&lt;BR /&gt;&lt;BR /&gt;# ./reduce f1 f2 f3&lt;BR /&gt;a&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;d&lt;BR /&gt;e&lt;BR /&gt;f&lt;BR /&gt;------&lt;BR /&gt;g&lt;BR /&gt;h&lt;BR /&gt;i&lt;BR /&gt;------&lt;BR /&gt;k&lt;BR /&gt;l&lt;BR /&gt;m&lt;BR /&gt;------&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 27 Apr 2009 19:06:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172057#M458247</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-04-27T19:06:06Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172058#M458248</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;Oldschool got my problem, thats what I wanted to do.&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2009 19:16:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172058#M458248</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T19:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172059#M458249</link>
      <description>James Thanks alot&lt;BR /&gt;it prefectly works but how can I find which output is for which file&lt;BR /&gt;&lt;BR /&gt;I know its in the order I provided in the command line but &lt;BR /&gt;&lt;BR /&gt;----is there any way I can have name of the file in the beginning----------&lt;BR /&gt;&lt;BR /&gt;Thanks alot&lt;BR /&gt;really Great job</description>
      <pubDate>Mon, 27 Apr 2009 19:41:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172059#M458249</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T19:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172060#M458250</link>
      <description>&lt;!--!*#--&gt;HI (again):&lt;BR /&gt;&lt;BR /&gt;Use this to trace the file names:&lt;BR /&gt;&lt;BR /&gt;# #!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;my %seen;&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    print;&lt;BR /&gt;    chomp;&lt;BR /&gt;    $seen{$_}++;&lt;BR /&gt;    if (eof) {&lt;BR /&gt;        print "[ $ARGV ] ------\n";&lt;BR /&gt;        last;&lt;BR /&gt;    }&lt;BR /&gt;}&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    chomp;&lt;BR /&gt;    print "$_\n" unless exists $seen{$_};&lt;BR /&gt;    $seen{$_}++;&lt;BR /&gt;    print "[ $ARGV ] ------\n" if eof;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;# ./reduce f1 f2 f3&lt;BR /&gt;a&lt;BR /&gt;b&lt;BR /&gt;c&lt;BR /&gt;d&lt;BR /&gt;e&lt;BR /&gt;f&lt;BR /&gt;[ f1 ] ------&lt;BR /&gt;g&lt;BR /&gt;h&lt;BR /&gt;i&lt;BR /&gt;[ f2 ] ------&lt;BR /&gt;k&lt;BR /&gt;l&lt;BR /&gt;m&lt;BR /&gt;[ f3 ] ------&lt;BR /&gt;&lt;BR /&gt;...using the data I used in my previous post.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 27 Apr 2009 19:47:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172060#M458250</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-04-27T19:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172061#M458251</link>
      <description>It dint work for my list. I tried with just 2 and dint work so i dint try with many&lt;BR /&gt;&lt;BR /&gt;cat uniq_from_many_list.pl&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;&lt;BR /&gt;my %seen;&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;print;&lt;BR /&gt;chomp;&lt;BR /&gt;$seen{$_}++;&lt;BR /&gt;if (eof) {&lt;BR /&gt;print "------\n";&lt;BR /&gt;last;&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;chomp;&lt;BR /&gt;print "$_\n" unless exists $seen{$_};&lt;BR /&gt;$seen{$_}++;&lt;BR /&gt;print "------\n" if eof;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;cat USAGE3s&lt;BR /&gt;astro                                   &lt;BR /&gt;bhpnbi2c                                &lt;BR /&gt;bhprtg13&lt;BR /&gt;bhprtg13                        &lt;BR /&gt;uhprtg6&lt;BR /&gt;uhprtg6 &lt;BR /&gt;uhprtg6      &lt;BR /&gt;&lt;BR /&gt;cat MAFGGDBs&lt;BR /&gt;astro   &lt;BR /&gt;benji   &lt;BR /&gt;bhpmaf13        &lt;BR /&gt;bhpmaf14        &lt;BR /&gt;bhpmaf15        &lt;BR /&gt;bhpmafg7        &lt;BR /&gt;bhpmafg8&lt;BR /&gt;dhpmaf17        &lt;BR /&gt;dhpmafg1&lt;BR /&gt;dhpmafg1        &lt;BR /&gt;dhpmafg2        &lt;BR /&gt;dhpmafg4        &lt;BR /&gt;dhpmafg6        &lt;BR /&gt;uhpmafg5        &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;uniq_from_many_list.pl USAGE3s MAFGGDBs&lt;BR /&gt;astro                                   &lt;BR /&gt;bhpnbi2c                                &lt;BR /&gt;bhprtg13&lt;BR /&gt;bhprtg13                        &lt;BR /&gt;uhprtg6&lt;BR /&gt;uhprtg6 &lt;BR /&gt;uhprtg6         &lt;BR /&gt;------&lt;BR /&gt;astro   &lt;BR /&gt;benji   &lt;BR /&gt;bhpmaf13        &lt;BR /&gt;bhpmaf14        &lt;BR /&gt;bhpmaf15        &lt;BR /&gt;bhpmafg7        &lt;BR /&gt;bhpmafg8&lt;BR /&gt;dhpmaf17        &lt;BR /&gt;dhpmafg1&lt;BR /&gt;dhpmafg1        &lt;BR /&gt;dhpmafg2        &lt;BR /&gt;dhpmafg4        &lt;BR /&gt;dhpmafg6        &lt;BR /&gt;uhpmafg5        &lt;BR /&gt;------&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Anything need to be changed so that it will work ?&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Apr 2009 19:51:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172061#M458251</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T19:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172062#M458252</link>
      <description>&lt;!--!*#--&gt;Hi (again):&lt;BR /&gt;&lt;BR /&gt;If you have leading and or trailing whitespace in any line, the original code would consider this significant.  This would account for the failure with your data.  we can remdedy this:&lt;BR /&gt;&lt;BR /&gt;# cat ./reduce&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;use strict;&lt;BR /&gt;use warnings;&lt;BR /&gt;my %seen;&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    print;&lt;BR /&gt;    chomp;&lt;BR /&gt;    s/^\s*//; s/\s*$//;&lt;BR /&gt;    $seen{$_}++;&lt;BR /&gt;    if (eof) {&lt;BR /&gt;        print "[ $ARGV ] ------\n";&lt;BR /&gt;        last;&lt;BR /&gt;    }&lt;BR /&gt;}&lt;BR /&gt;while (&amp;lt;&amp;gt;) {&lt;BR /&gt;    chomp;&lt;BR /&gt;    s/^\s*//; s/\s*$//;&lt;BR /&gt;    print "$_\n" unless exists $seen{$_};&lt;BR /&gt;    $seen{$_}++;&lt;BR /&gt;    print "[ $ARGV ] ------\n" if eof;&lt;BR /&gt;}&lt;BR /&gt;1;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Mon, 27 Apr 2009 20:05:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172062#M458252</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-04-27T20:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172063#M458253</link>
      <description>Great!!!!!!!&lt;BR /&gt;Thank You So Much&lt;BR /&gt;&lt;BR /&gt;ITs working like i wanted</description>
      <pubDate>Mon, 27 Apr 2009 20:51:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172063#M458253</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T20:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting Unique Values from many List</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172064#M458254</link>
      <description>I have found the solution</description>
      <pubDate>Mon, 27 Apr 2009 20:51:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/selecting-unique-values-from-many-list/m-p/5172064#M458254</guid>
      <dc:creator>pareshan</dc:creator>
      <dc:date>2009-04-27T20:51:57Z</dc:date>
    </item>
  </channel>
</rss>

