<?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 awk help in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989135#M687971</link>
    <description>Hello,&lt;BR /&gt;i have a log file which contains thousands of records.i want to write a script which gives me&lt;BR /&gt;last 1 month's records...My log file keeps&lt;BR /&gt;the date information like;&lt;BR /&gt;yyyy/mm/dd&lt;BR /&gt;and example one of the record for my log file as below;&lt;BR /&gt;R  MAN  954627 954632 2006/06/06 17:28:19  KSAD2565  /users/rvs/usrdat/KSAD2565  2953&lt;BR /&gt;so as you see the 5th colon is keeping date information..As a result,if i want to run the script today so this means i need records&lt;BR /&gt;from 2006/06/06---&amp;gt;today&lt;BR /&gt;&lt;BR /&gt;All suggetions would be pointed...&lt;BR /&gt;:-)&lt;BR /&gt;Good Luck,&lt;BR /&gt;</description>
    <pubDate>Thu, 06 Jul 2006 01:57:15 GMT</pubDate>
    <dc:creator>Cem Tugrul</dc:creator>
    <dc:date>2006-07-06T01:57:15Z</dc:date>
    <item>
      <title>awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989135#M687971</link>
      <description>Hello,&lt;BR /&gt;i have a log file which contains thousands of records.i want to write a script which gives me&lt;BR /&gt;last 1 month's records...My log file keeps&lt;BR /&gt;the date information like;&lt;BR /&gt;yyyy/mm/dd&lt;BR /&gt;and example one of the record for my log file as below;&lt;BR /&gt;R  MAN  954627 954632 2006/06/06 17:28:19  KSAD2565  /users/rvs/usrdat/KSAD2565  2953&lt;BR /&gt;so as you see the 5th colon is keeping date information..As a result,if i want to run the script today so this means i need records&lt;BR /&gt;from 2006/06/06---&amp;gt;today&lt;BR /&gt;&lt;BR /&gt;All suggetions would be pointed...&lt;BR /&gt;:-)&lt;BR /&gt;Good Luck,&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jul 2006 01:57:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989135#M687971</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2006-07-06T01:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989136#M687972</link>
      <description>Shalom Cem,&lt;BR /&gt;&lt;BR /&gt;Two step process.&lt;BR /&gt;&lt;BR /&gt;Data looks like this:&lt;BR /&gt;R MAN 954627 954632 2006/06/06 17:28:19 KSAD2565 /users/rvs/usrdat/KSAD2565 2953&lt;BR /&gt;&lt;BR /&gt;You can start with grep actually.&lt;BR /&gt;&lt;BR /&gt;grep "2006/06" filename &amp;gt; newfile&lt;BR /&gt;&lt;BR /&gt;You may need a special character to support the slash.&lt;BR /&gt;&lt;BR /&gt;You can do it with awk.&lt;BR /&gt;&lt;BR /&gt;while read -r dataline&lt;BR /&gt;do&lt;BR /&gt;  datevar=$(echo $dataline | awk '{print $5}'&lt;BR /&gt;done &amp;lt; logfile&lt;BR /&gt;&lt;BR /&gt;All you need to do now is parse the date variable.&lt;BR /&gt;&lt;BR /&gt;yearvar=$(echo $datevar | awk -F\/ '{print $1}'&lt;BR /&gt;monthvar=$(echo $datevar | awk -F\/ '{print $2}'&lt;BR /&gt;dayvar=$(echo $datevar | awk -F\/ '{print $3}'&lt;BR /&gt;&lt;BR /&gt;Not precisely sure about the -F statment. I'm assuming the special charcater treatment is required. I don't have time to test.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 06 Jul 2006 02:12:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989136#M687972</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2006-07-06T02:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989137#M687973</link>
      <description># perl -MDate::Calc=Delta_YMD -ne'BEGIN{@now=localtime;($Y,$M,$D)=($now[5]+1900,++$now[4],$now[3])}($y,$m,$d)=Delta_YMD(m{\s(\d+)/(\d+)/(\d+)\s},$Y,$M,$D);print if !$y' test.dta&lt;BR /&gt;&lt;BR /&gt;prints the last year&lt;BR /&gt;&lt;BR /&gt;# perl -MDate::Calc=Delta_YMD -ne'BEGIN{@now=localtime;($Y,$M,$D)=($now[5]+1900,++$now[4],$now[3])}($y,$m,$d)=Delta_YMD(m{\s(\d+)/(\d+)/(\d+)\s},$Y,$M,$D);print if !$y &amp;amp;&amp;amp; !$m' test.dta&lt;BR /&gt;&lt;BR /&gt;prints all from the last month&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 06 Jul 2006 02:15:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989137#M687973</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-07-06T02:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989138#M687974</link>
      <description>Steven,&lt;BR /&gt;&lt;BR /&gt;My 7th colon is the filename and changes...&lt;BR /&gt;As i said this file is log file which contains recieved files to my hp-ux so&lt;BR /&gt;i have to find out for some specific filenames but it does not matter i may grap it...the problem is getting records which belongs from last month's---&amp;gt;today&lt;BR /&gt;Anyway,i will test it...&lt;BR /&gt;&lt;BR /&gt;Procura,&lt;BR /&gt;&lt;BR /&gt;perl -MDate::Calc=Delta_YMD -ne'BEGIN{@now=localtime;($Y,$M,$D)=($now[5]+1900,++$now[4],$now[3])}($y,$m,$d)=Delta_YMD(m{\s(\d+)&amp;gt;&lt;BR /&gt;Can't locate Date/Calc.pm in @INC (@INC contains: /opt/perl5/lib/5.00502/PA-RISC1.1 /opt/perl5/lib/5.00502 /opt/perl5/lib/site_perl/5.005/PA-RISC1.1 /opt/perl5/lib/site_perl/5.005 .).&lt;BR /&gt;BEGIN failed--compilation aborted.&lt;BR /&gt;&lt;BR /&gt;i think i made a mistake while running it</description>
      <pubDate>Thu, 06 Jul 2006 02:37:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989138#M687974</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2006-07-06T02:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989139#M687975</link>
      <description>baan01:/baan/bse/etc#perl -v&lt;BR /&gt;&lt;BR /&gt;This is perl, version 5.005_02 built for PA-RISC1.1&lt;BR /&gt;&lt;BR /&gt;Copyright 1987-1998, Larry Wall&lt;BR /&gt;&lt;BR /&gt;Perl may be copied only under the terms of either the Artistic License or the&lt;BR /&gt;GNU General Public License, which may be found in the Perl 5.0 source kit.&lt;BR /&gt;&lt;BR /&gt;Complete documentation for Perl, including FAQ lists, should be found on&lt;BR /&gt;this system using `man perl' or `perldoc perl'.  If you have access to the&lt;BR /&gt;Internet, point your browser at &lt;A href="http://www.perl.com/," target="_blank"&gt;http://www.perl.com/,&lt;/A&gt; the Perl Home Page.</description>
      <pubDate>Thu, 06 Jul 2006 02:42:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989139#M687975</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2006-07-06T02:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989140#M687976</link>
      <description>Ah, oh, that is a rather old perl :)&lt;BR /&gt;And the problem in this case is not perl itself, but the fact that the module Date::Calc is not installed.&lt;BR /&gt;&lt;BR /&gt;Would you consider a perl upgrade? (1),(2)&lt;BR /&gt;Would you like to install Date::Calc on the existing perl? (3),(4)&lt;BR /&gt;Or do you want a different solution altogether?&lt;BR /&gt;&lt;BR /&gt;1) &lt;A href="http://mirrors.develooper.com/hpux/#Perl" target="_blank"&gt;http://mirrors.develooper.com/hpux/#Perl&lt;/A&gt;&lt;BR /&gt;2) &lt;A href="http://mirrors.develooper.com/hpux/downloads.html" target="_blank"&gt;http://mirrors.develooper.com/hpux/downloads.html&lt;/A&gt;&lt;BR /&gt;3) &lt;A href="http://search.cpan.org/~stbey/Date-Calc-5.4/" target="_blank"&gt;http://search.cpan.org/~stbey/Date-Calc-5.4/&lt;/A&gt;&lt;BR /&gt;4) &lt;A href="http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/Date-Calc-5.4.tar.gz" target="_blank"&gt;http://search.cpan.org/CPAN/authors/id/S/ST/STBEY/Date-Calc-5.4.tar.gz&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Enjoy, Have FUN! H.Merijn</description>
      <pubDate>Thu, 06 Jul 2006 02:48:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989140#M687976</guid>
      <dc:creator>H.Merijn Brand (procura</dc:creator>
      <dc:date>2006-07-06T02:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989141#M687977</link>
      <description>Procura,&lt;BR /&gt;Once upon a time you again helped me about perl&amp;amp;inst&amp;amp;upgrade...it was really helpful.&lt;BR /&gt;i can think upgrade perl or install the&lt;BR /&gt;date program but not now so is there any&lt;BR /&gt;other solution to manipulate with awk?&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jul 2006 03:06:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989141#M687977</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2006-07-06T03:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989142#M687978</link>
      <description>Cem,&lt;BR /&gt;&lt;BR /&gt;First, use Clay's Date Hammer script (attached) to get the date a month in the past in the same format as your logfile.  Then have awk output the first line in the logfile containing that date, along with all successive lines:&lt;BR /&gt;&lt;BR /&gt;D=./caljd.sh -S "/" -y $(./caljd.sh -p 30)&lt;BR /&gt;awk "/${D}/,EOF" ${logfile}&lt;BR /&gt;&lt;BR /&gt;If you only want certain lines returned by awk,  pipe the output through grep.&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Thu, 06 Jul 2006 06:36:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989142#M687978</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2006-07-06T06:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989143#M687979</link>
      <description>&lt;!--!*#--&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;an awk solution seems possible to me.&lt;BR /&gt;If we assume the file is ordered by date, we can output from the first pattern found without further checking:&lt;BR /&gt;&lt;BR /&gt;awk -v ym=$(date +%Y/%m/%d) 'BEGIN {split(ym,z,"/"); if(z[2]+0 == 1) {z[1]--;z[2]=12}&lt;BR /&gt;else z[2]--&lt;BR /&gt;lookfor=sprintf("%s/%02d/",z[1],z[2])}&lt;BR /&gt;$5 ~ "^"lookfor {split($5,dd,"/");if (dd[3]+0 &amp;gt;= z[3]+0) doit=1}&lt;BR /&gt;doit' logfile&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If the date strings in logfile are not written sequentially you have to&lt;BR /&gt;- define a lookfor2 in BEGIN containing the original year and month, e.g.&lt;BR /&gt;...&lt;BR /&gt;BEGIN {split(ym,z,"/"); &lt;BR /&gt;lookfor2=sprintf("%s/%02d/",z[1],z[2])&lt;BR /&gt;if(z[2]+0 == 1) {...&lt;BR /&gt;&lt;BR /&gt;- decide in each match with 'lookfor' and 'lookfor2'&lt;BR /&gt;&lt;BR /&gt;I'm shure you can do this by yourself.&lt;BR /&gt;&lt;BR /&gt;mfG Peter&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jul 2006 08:29:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989143#M687979</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-07-06T08:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989144#M687980</link>
      <description>Cem,&lt;BR /&gt;&lt;BR /&gt;If you are looking for an awk one-liner, this posting is not it. And in my opinion, what you are trying to accomplish, requires a little more than a one-liner.&lt;BR /&gt;&lt;BR /&gt;If you do not have it already, get Clay Stephenson's caljd.sh script from procura's web page &lt;A href="http://mirrors.develooper.com/hpux/" target="_blank"&gt;http://mirrors.develooper.com/hpux/&lt;/A&gt; (scroll to the bottom for the download links for both shell and perl versions. I personally use .sh version)&lt;BR /&gt;&lt;BR /&gt;if you run caljd.sh without any arguments, you will get today in Julian date format, something like :&lt;BR /&gt;&lt;BR /&gt;# ./caljd.sh&lt;BR /&gt;2453923&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;if you happen to run it like this&lt;BR /&gt;&lt;BR /&gt;# caljd.sh 2453923&lt;BR /&gt;07 06 2006&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;so it basically toglles the julian format to regular date format. Nice thing about Julian date, you can add/subtract from that one.&lt;BR /&gt;&lt;BR /&gt;I think you already figured out where I am going with this. All you need to do is something like this&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;todayjulian=`./caljd.sj`&lt;BR /&gt;monthlength=30 # modify it as you see fit to 28, 29 or 31&lt;BR /&gt;&lt;BR /&gt;s=0&lt;BR /&gt;&lt;BR /&gt;while [ $s -lt $monthlength ]&lt;BR /&gt;do&lt;BR /&gt;(( day=$todayjulian-$s ))&lt;BR /&gt;datestring=`./caljd.sh $day`&lt;BR /&gt;&lt;BR /&gt;yr=`echo $datestring | cut -d" " -f3`&lt;BR /&gt;mo=`echo $datestring | cut -d" " -f2`&lt;BR /&gt;dy=`echo $datestring | cut -d" " -f1`&lt;BR /&gt;&lt;BR /&gt;mydate=$yr"/"$mo"/"$dy&lt;BR /&gt;&lt;BR /&gt;grep "$mydate" mylogfile &amp;gt;&amp;gt; last_month_log&lt;BR /&gt;# you can also do an awk {'print $5'} and compare it to $mydate if you prefer&lt;BR /&gt;&lt;BR /&gt;(( s=$s+1 ))&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Caveat emptors: It is not the most efficient way to do it and it is not tested, but as I follow your progress here, you can figure out the logic as a well experienced hp-ux person and modify it to your desires.&lt;BR /&gt;&lt;BR /&gt;Kolay gelsin...</description>
      <pubDate>Thu, 06 Jul 2006 09:42:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989144#M687980</guid>
      <dc:creator>Mel Burslan</dc:creator>
      <dc:date>2006-07-06T09:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989145#M687981</link>
      <description>Hi Cem,&lt;BR /&gt;&lt;BR /&gt;did you really try my awk-solution?&lt;BR /&gt;If not, do it!&lt;BR /&gt;If something was wrong in the code, you will tell us, I hope.&lt;BR /&gt;&lt;BR /&gt;mfG Peter</description>
      <pubDate>Thu, 06 Jul 2006 10:06:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989145#M687981</guid>
      <dc:creator>Peter Nikitka</dc:creator>
      <dc:date>2006-07-06T10:06:47Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989146#M687982</link>
      <description>Hi Cem,&lt;BR /&gt;&lt;BR /&gt;try the attached script, using your logfile as $1&lt;BR /&gt;&lt;BR /&gt;Start and end dates must both exist in your logfile.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;John K.</description>
      <pubDate>Thu, 06 Jul 2006 11:02:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989146#M687982</guid>
      <dc:creator>john korterman</dc:creator>
      <dc:date>2006-07-06T11:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989147#M687983</link>
      <description>Hi Cem,&lt;BR /&gt;&lt;BR /&gt;Here's a simplified way that Peter was showing.  This should work if you're date is always in the same format.  Sorry I'm on my work pc and can't test this to verify it's working.&lt;BR /&gt;&lt;BR /&gt;awk -v ymd=$(date +%Y/%m/%d) '{&lt;BR /&gt;   if ($5==ymd) {&lt;BR /&gt;      for (i=0;i&lt;NF&gt;&lt;/NF&gt;        print $i&lt;BR /&gt;    }&lt;BR /&gt;}' log&lt;BR /&gt;&lt;BR /&gt;explanation: ymd is grabbing the date from the shell and putting it in the format your log file is.  $5 I believe, (hard to see from your copy and paste) is your date field.  And the for statement should print your entire line.  NF is number of fields.&lt;BR /&gt;&lt;BR /&gt;good luck,&lt;BR /&gt;Jeff&lt;BR /&gt;</description>
      <pubDate>Thu, 06 Jul 2006 23:08:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989147#M687983</guid>
      <dc:creator>Jeff Colyer</dc:creator>
      <dc:date>2006-07-06T23:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989148#M687984</link>
      <description>Hello Again,&lt;BR /&gt;&lt;BR /&gt;Sorry for late feedeback because unexpectly i had fatal problems over my SAN&amp;amp;production&lt;BR /&gt;servers and now it is fixed...&lt;BR /&gt;&lt;BR /&gt;Peter,&lt;BR /&gt;&lt;BR /&gt;awk -v ym=$(date +%Y/%m/%d) 'BEGIN {split(ym,z,"/"); if(z[2]+0 == 1) {z[1]--;z[2]=12}&lt;BR /&gt;else z[2]--&lt;BR /&gt;lookfor=sprintf("%s/%02d/",z[1],z[2])}&lt;BR /&gt;$5 ~ "^"lookfor {split($5,dd,"/");if (dd[3]+0 &amp;gt;= z[3]+0) doit=1}&lt;BR /&gt;doit' logfile&lt;BR /&gt;&lt;BR /&gt;Your script done what i want so 10 goes to you...&lt;BR /&gt;i will test other replies's solution then give points so i still keep this thread open.&lt;BR /&gt;&lt;BR /&gt;Thank's for all replies...&lt;BR /&gt;for you</description>
      <pubDate>Fri, 07 Jul 2006 01:02:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989148#M687984</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2006-07-07T01:02:56Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989149#M687985</link>
      <description>Hi Cem,&lt;BR /&gt;another solution using sed:&lt;BR /&gt;&lt;BR /&gt;D="2006\/06\/06"&lt;BR /&gt;sed -n '/'$D'/,$p' f1&lt;BR /&gt;&lt;BR /&gt;D="yyyy\/mm\/dd"&lt;BR /&gt;Put here your start date&lt;BR /&gt;&lt;BR /&gt;sed -n '/'$D'/,$p' f1&lt;BR /&gt;Thsi print lines starting from line containing your date till the end of the file&lt;BR /&gt;($) that I suppose be today.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Art</description>
      <pubDate>Fri, 07 Jul 2006 04:02:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989149#M687985</guid>
      <dc:creator>Arturo Galbiati</dc:creator>
      <dc:date>2006-07-07T04:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: awk help</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989150#M687986</link>
      <description>Peter's solution is the best...</description>
      <pubDate>Wed, 03 Sep 2008 10:29:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/awk-help/m-p/4989150#M687986</guid>
      <dc:creator>Cem Tugrul</dc:creator>
      <dc:date>2008-09-03T10:29:35Z</dc:date>
    </item>
  </channel>
</rss>

