<?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: Fecth Based on Line Numbers in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871027#M773554</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you mean that you want to extract a range of lines from a file, then you can do, for example:&lt;BR /&gt;&lt;BR /&gt;# perl -ne 'print if 3..5' /etc/hosts&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Wed, 27 Sep 2006 14:14:13 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2006-09-27T14:14:13Z</dc:date>
    <item>
      <title>Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871026#M773553</link>
      <description>Hi ,&lt;BR /&gt;&lt;BR /&gt;I have a list of line nos in a file and would like to fetch those lines directly in a file and write it to a new file.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Sep 2006 14:01:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871026#M773553</guid>
      <dc:creator>uform</dc:creator>
      <dc:date>2006-09-27T14:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871027#M773554</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;If you mean that you want to extract a range of lines from a file, then you can do, for example:&lt;BR /&gt;&lt;BR /&gt;# perl -ne 'print if 3..5' /etc/hosts&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 27 Sep 2006 14:14:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871027#M773554</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-27T14:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871028#M773555</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;# cat f1&lt;BR /&gt;one&lt;BR /&gt;two&lt;BR /&gt;three&lt;BR /&gt;four&lt;BR /&gt;five&lt;BR /&gt;six&lt;BR /&gt;seven&lt;BR /&gt;eight&lt;BR /&gt;nine&lt;BR /&gt;ten&lt;BR /&gt;&lt;BR /&gt;# cat lines&lt;BR /&gt;2p;5,8p&lt;BR /&gt;&lt;BR /&gt;# sed -n "$(cat lines)" f1&lt;BR /&gt;two&lt;BR /&gt;five&lt;BR /&gt;six&lt;BR /&gt;seven&lt;BR /&gt;eight&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Wed, 27 Sep 2006 14:28:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871028#M773555</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2006-09-27T14:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871029#M773556</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;A mixture of line numbers and/or ranges can also be extracted thusly:&lt;BR /&gt;&lt;BR /&gt;# perl -ne 'print if 3..5 or 1..1 or 9..9 or 17..eof' /etc/hosts&lt;BR /&gt;&lt;BR /&gt;...thus lines 1, 3, 4, 5, 9, and 17 until the end-of-file are printed.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 27 Sep 2006 14:32:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871029#M773556</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-27T14:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871030#M773557</link>
      <description>If the numbers are numeric then:&lt;BR /&gt;&lt;BR /&gt;# grep '[0-9]' infile &amp;gt; outfile</description>
      <pubDate>Wed, 27 Sep 2006 14:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871030#M773557</guid>
      <dc:creator>Sandman!</dc:creator>
      <dc:date>2006-09-27T14:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871031#M773558</link>
      <description>cat File1.txt   [lines nos of File2.dat]&lt;BR /&gt;298038&lt;BR /&gt;458038&lt;BR /&gt;564678&lt;BR /&gt;984738&lt;BR /&gt;573937&lt;BR /&gt;238480&lt;BR /&gt;123483&lt;BR /&gt;&lt;BR /&gt;Now i want to fetch above listed line no's  records from File2.dat  and write it to &lt;BR /&gt;File3.dat&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Sep 2006 16:43:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871031#M773558</guid>
      <dc:creator>uform</dc:creator>
      <dc:date>2006-09-27T16:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871032#M773559</link>
      <description>cat File1.txt   [lines nos of File2.dat]&lt;BR /&gt;298038&lt;BR /&gt;458038&lt;BR /&gt;564678&lt;BR /&gt;984738&lt;BR /&gt;573937&lt;BR /&gt;238480&lt;BR /&gt;123483&lt;BR /&gt;&lt;BR /&gt;Now i want to fetch above listed line no's  records from File2.dat  and write it to &lt;BR /&gt;File3.dat (file3.dat should have only 7 records in it)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Sep 2006 16:44:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871032#M773559</guid>
      <dc:creator>uform</dc:creator>
      <dc:date>2006-09-27T16:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871033#M773560</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;# grep -f ./File1.txt ./File2.dat &amp;gt; ./File3.dat&lt;BR /&gt;&lt;BR /&gt;See the manpages for 'grep(1)'.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Wed, 27 Sep 2006 16:58:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871033#M773560</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2006-09-27T16:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871034#M773561</link>
      <description>Hello again,&lt;BR /&gt;&lt;BR /&gt;# cat extract_lines.sh&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;f1=$1&lt;BR /&gt;f2=$2&lt;BR /&gt;for line in $(cat ${f1})&lt;BR /&gt;do&lt;BR /&gt;  sed -n "${line}p;" &amp;lt; ${f2}&lt;BR /&gt;done&lt;BR /&gt;exit&lt;BR /&gt;&lt;BR /&gt;# ./extract_lines.sh ./File1.txt ./File2.dat &amp;gt; ./File3.dat&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Wed, 27 Sep 2006 17:49:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871034#M773561</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2006-09-27T17:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871035#M773562</link>
      <description>&lt;!--!*#--&gt;Should the output in file3 appear in any order?&lt;BR /&gt;&lt;BR /&gt;In file2 order, using AWK and a HELPER script:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt; awk "{print "(NR==" $1 ")"}" file1.tmp &amp;gt; helper.awk&lt;BR /&gt;&amp;gt; awk -f helper.awk file2.tmp&lt;BR /&gt;three&lt;BR /&gt;five&lt;BR /&gt;eight&lt;BR /&gt;hrtherh&lt;BR /&gt;&lt;BR /&gt;Using perl, reading first file into an array, grepping that array whilre reading second file:&lt;BR /&gt;&lt;BR /&gt;------------ extract.pl ----------------&lt;BR /&gt;$file = shift @ARGV;&lt;BR /&gt;open FILE,"&amp;lt;$file";&lt;BR /&gt;@lines = &lt;FILE&gt;;&lt;BR /&gt;close FILE; # reset line number&lt;BR /&gt;$file = shift @ARGV;&lt;BR /&gt;open FILE,"&amp;lt;$file";&lt;BR /&gt;while (&lt;FILE&gt;) {&lt;BR /&gt;  print if grep /^$.$/,@lines;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Using perl, in order of file1&lt;BR /&gt;------------ extract_ordered.pl --------&lt;BR /&gt;$file = shift @ARGV;&lt;BR /&gt;open FILE,"&amp;lt;$file";&lt;BR /&gt;@lines = &lt;FILE&gt;;&lt;BR /&gt;chomp @lines;&lt;BR /&gt;close FILE; # reset line number&lt;BR /&gt;&lt;BR /&gt;$file = shift @ARGV;&lt;BR /&gt;open FILE,"&amp;lt;$file";&lt;BR /&gt;while (&lt;FILE&gt;) {&lt;BR /&gt;  $data{"$."}=$_ if grep /^$.$/,@lines;&lt;BR /&gt;}&lt;BR /&gt;foreach (@lines) {&lt;BR /&gt;  print $data{$_};&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Using perl but with associatve array to remember desired lines:&lt;BR /&gt;------------- extract.pl ----------&lt;BR /&gt;$file = shift @ARGV;&lt;BR /&gt;open FILE,"&amp;lt;$file";&lt;BR /&gt;while (&lt;FILE&gt;) {chomp; $lines{$_}++}&lt;BR /&gt;close FILE;           # reset line number&lt;BR /&gt;$file = shift @ARGV;&lt;BR /&gt;open FILE,"&amp;lt;$file";&lt;BR /&gt;while (&lt;FILE&gt;) { print if $lines{$.} }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy!&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;/FILE&gt;&lt;/FILE&gt;&lt;/FILE&gt;&lt;/FILE&gt;&lt;/FILE&gt;&lt;/FILE&gt;</description>
      <pubDate>Wed, 27 Sep 2006 22:53:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871035#M773562</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-09-27T22:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871036#M773563</link>
      <description>oops, meant to show my sample data. See below.&lt;BR /&gt;The '14' is there to make sure line 1 nor 4 matched against it 'by accident'.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; cat file1.tmp&lt;BR /&gt;5&lt;BR /&gt;3&lt;BR /&gt;14&lt;BR /&gt;8&lt;BR /&gt;&amp;gt;cat file2.tmp&lt;BR /&gt;one&lt;BR /&gt;two&lt;BR /&gt;three&lt;BR /&gt;four&lt;BR /&gt;five&lt;BR /&gt;six&lt;BR /&gt;seven&lt;BR /&gt;eight&lt;BR /&gt;nine&lt;BR /&gt;ten&lt;BR /&gt;asfawer&lt;BR /&gt;wergwergtwr&lt;BR /&gt;rtgherther&lt;BR /&gt;hrtherh&lt;BR /&gt;erher&lt;BR /&gt;her&lt;BR /&gt;hj&lt;BR /&gt;etyjtrj&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Sep 2006 22:56:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871036#M773563</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-09-27T22:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871037#M773564</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Try this :&lt;BR /&gt;&lt;BR /&gt;cat -n File2.dat | egrep -f File1.txt &amp;gt; File3.dat&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;JPH</description>
      <pubDate>Thu, 28 Sep 2006 08:41:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871037#M773564</guid>
      <dc:creator>Jean-Philippe HENRY_1</dc:creator>
      <dc:date>2006-09-28T08:41:54Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871038#M773565</link>
      <description>JRF,&lt;BR /&gt;&lt;BR /&gt;Your suggested solution seems to assume that the line number is part of the line in file2, and does not otherwise randomly appear in lines.&lt;BR /&gt;&lt;BR /&gt;JPH, &lt;BR /&gt;&lt;BR /&gt;Nice tweak, with "cat -n". It 'looks' much the same solution as JRF proposed but it will add line numbers to match on.&lt;BR /&gt;- One must hope the -n number formatting matches the file1 number presentation.&lt;BR /&gt;- One would need to feed the output to cut or awk to remove the added linenumbers from file3&lt;BR /&gt;- One might want to use a more complete (anchored) search expression to avoid triggering on random numbers anywat on a data line which happen to match a line number.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Hein.&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Sep 2006 09:19:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871038#M773565</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2006-09-28T09:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871039#M773566</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;since your file you lookup for line numbers may be large (your line numbers imply this), I would prefer to scan the file only once.&lt;BR /&gt;My solutions generates two awk program fragments. When put together, they give you the lines in the same order as defined in your line numbers file.&lt;BR /&gt;&lt;BR /&gt;l=`wc -l awk '{i++;print "NR=="$1 " {a["i"]=$0}"}' /tmp/num | sort -n -k 1.5 -k 2 &amp;gt;/tmp/prog.awk&lt;BR /&gt;print "END {for(j=1;j&amp;lt;=$l;j++) print a[j]}" &amp;gt;&amp;gt;/tmp/prog.awk&lt;BR /&gt;&lt;BR /&gt;awk -f /tmp/prog.awk file_to_lookup&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Thu, 28 Sep 2006 10:20:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871039#M773566</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-09-28T10:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871040#M773567</link>
      <description>Sorry for the followup post,&lt;BR /&gt;&lt;BR /&gt;but I wanted to add an example of the generated awk program:&lt;BR /&gt;&lt;BR /&gt;cat /tmp/num&lt;BR /&gt;2&lt;BR /&gt;5&lt;BR /&gt;79&lt;BR /&gt;589&lt;BR /&gt;234&lt;BR /&gt;56&lt;BR /&gt;8&lt;BR /&gt;444&lt;BR /&gt;&lt;BR /&gt;cat /tmp/prog.awk&lt;BR /&gt;NR==2 {a[1]=$0}&lt;BR /&gt;NR==5 {a[2]=$0}&lt;BR /&gt;NR==8 {a[7]=$0}&lt;BR /&gt;NR==56 {a[6]=$0}&lt;BR /&gt;NR==79 {a[3]=$0}&lt;BR /&gt;NR==234 {a[5]=$0}&lt;BR /&gt;NR==444 {a[8]=$0}&lt;BR /&gt;NR==589 {a[4]=$0}&lt;BR /&gt;END {for(j=1;j&amp;lt;=       8;j++) print a[j]}&lt;BR /&gt;&lt;BR /&gt;mfG Peter&lt;BR /&gt;</description>
      <pubDate>Thu, 28 Sep 2006 10:26:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871040#M773567</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-09-28T10:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871041#M773568</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;Hein : &lt;BR /&gt;&lt;BR /&gt;To take your relevant remarks into account, I suggest : &lt;BR /&gt;&lt;BR /&gt;1) to modify File1.txt so its strings be translated into anchored regular expressions&lt;BR /&gt;&lt;BR /&gt;awk '{ print "^ *" $0 "\t" }' File1.txt &amp;gt; File1.regexp&lt;BR /&gt;&lt;BR /&gt;Notice there is a SPACE character (ASCII 0x20) between ^ and * because line numbers generated by cat -n are padded with spaces to fit a 6-digit format number. When the number of lines exceeds 999,999 line numbers are not padded with spaces anymore. Whatever the case, there's always one tabulation between the line number and the beginning of the line.&lt;BR /&gt;&lt;BR /&gt;2) to prevent line numbers from appearing in File3.dat with cut as you proposed.&lt;BR /&gt;&lt;BR /&gt;Hence, the final command would be :&lt;BR /&gt;&lt;BR /&gt;cat -n File2.dat | egrep -f File1.regexp | cut -f' ' -f2- &amp;gt; File3.dat&lt;BR /&gt;&lt;BR /&gt;The separator to pass to the cut command through the -f option is a tabulation.&lt;BR /&gt;&lt;BR /&gt;Uform : &lt;BR /&gt;&lt;BR /&gt;If you're convinced that File2.dat does not contain any sequence of digits that looks like a line number you can even use the fgrep command which is, at least, twice faster than egrep but does not allow  regular expressions :&lt;BR /&gt;&lt;BR /&gt;cat -n File2.dat | fgrep -f File1.txt | cut -f' ' -f2- &amp;gt; File3.dat&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;JPH&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Sep 2006 08:28:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871041#M773568</guid>
      <dc:creator>Jean-Philippe HENRY_1</dc:creator>
      <dc:date>2006-09-29T08:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Fecth Based on Line Numbers</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871042#M773569</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;maybe this script can be used:&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/sh&lt;BR /&gt;cat File1.txt | sort| while read line&lt;BR /&gt;do&lt;BR /&gt;nl File2.txt | awk -v first=$line '$1 ~ first' | cut -f2-&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Fri, 29 Sep 2006 14:20:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/fecth-based-on-line-numbers/m-p/3871042#M773569</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2006-09-29T14:20:03Z</dc:date>
    </item>
  </channel>
</rss>

