<?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: Perl equivalent needed in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779389#M640883</link>
    <description>Hi JRF,Others!&lt;BR /&gt;&lt;BR /&gt;I have made the following script - &lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;&lt;BR /&gt;use strict;&lt;BR /&gt;&lt;BR /&gt;my ($app,$cmd);&lt;BR /&gt;open(FH,"&amp;lt;","/tmp/mail") or die "Fail- $!\n";&lt;BR /&gt;open(FW,"&amp;gt;","/tmp/mail_test") or die "Fail- $!\n";&lt;BR /&gt;while(&lt;FH&gt;) {&lt;BR /&gt;chomp;&lt;BR /&gt;if(/Appname:(.*)/) {  $app=$1; }&lt;BR /&gt;if (/Date\/Time:(.*)/) { printf FW "%s:%s\n",$1,$app; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;$cmd='mail -s "mail subject here" allan@mail.com &amp;lt; /tmp/mail_test 2&amp;gt;/tmp/error_mail';&lt;BR /&gt;system($cmd);&lt;BR /&gt;if ( $? ne 0 ) { die "Failure - while sending email. Please check file /tmp/error_mail \n"; }&lt;BR /&gt;close(FW);&lt;BR /&gt;close(FH);&lt;BR /&gt;&lt;BR /&gt;Please review and let me know of any pitfall(any stale filhandle).&lt;BR /&gt;&lt;BR /&gt;In addition to Date/Appname, I am struggling a bit with printing rest of the alert text after printing Date/Appname.. Can you help?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Allan.&lt;/FH&gt;</description>
    <pubDate>Wed, 20 Apr 2011 19:10:17 GMT</pubDate>
    <dc:creator>Allanm</dc:creator>
    <dc:date>2011-04-20T19:10:17Z</dc:date>
    <item>
      <title>Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779384#M640878</link>
      <description>For the following command I need a perl equivalent with a couple of more things - &lt;BR /&gt;&lt;BR /&gt;cat /tmp/mail |grep Appname &amp;gt; /tmp/mail1;cat /tmp/mail &amp;gt;&amp;gt; /tmp/mail1; mail -s "mail subject here" allan@mail.com &amp;lt; /tmp/mail1; &amp;gt;/tmp/mail ; &amp;gt;/tmp/mail1&lt;BR /&gt;&lt;BR /&gt;==================&lt;BR /&gt;cat /tmp/mail&lt;BR /&gt;&lt;BR /&gt; ***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: flle system&lt;BR /&gt;Host: localhost&lt;BR /&gt;Address: 127.0.0.1&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:01:03 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;(Return code of 127 is out of bounds - plugin may be missing)&lt;BR /&gt;&lt;BR /&gt;Console : http://URL&lt;BR /&gt; ***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: Appname1&lt;BR /&gt;Host: remotehost.domain.com&lt;BR /&gt;Address: x.x.x.x&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:27:13 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;Connection refused&lt;BR /&gt;&lt;BR /&gt;Console http://URL&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;===========&lt;BR /&gt;&lt;BR /&gt;Want to create a Perl script which does a cat on /tmp/mail and egrep for "Appname|Date" and gives an output like this: &lt;BR /&gt;&lt;BR /&gt;Tue Apr 19 13:01:03 PDT 2011 : flle system&lt;BR /&gt;Tue Apr 19 13:27:13 PDT 2011 : Appname1&lt;BR /&gt;&lt;BR /&gt;and then send this output to my email address and finally empty out the file(s).</description>
      <pubDate>Tue, 19 Apr 2011 20:29:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779384#M640878</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-19T20:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779385#M640879</link>
      <description>A script rather than a one liner please.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Allan.</description>
      <pubDate>Tue, 19 Apr 2011 20:32:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779385#M640879</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-19T20:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779386#M640880</link>
      <description>Hi Allanm:&lt;BR /&gt;&lt;BR /&gt;This will get the fields you want. You can redirect the output to a file or you can store it in a variable.  While we could write the whole set of code in Perl, I'll leave that as an exercise for you :-)&lt;BR /&gt;&lt;BR /&gt;# perl -nle 'chomp;$name=$1 if m{^Appname:\s*(.+)};print "$1 $name" if m{^Date/Time:\s*(.+)}' file&lt;BR /&gt;Tue Apr 19 13:01:03 PDT 2011 flle system&lt;BR /&gt;Tue Apr 19 13:27:13 PDT 2011 Appname1&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 19 Apr 2011 23:05:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779386#M640880</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2011-04-19T23:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779387#M640881</link>
      <description>Thanks JRF, forgot to mention , In addition, I need to append the original alerts to the bottom of the date:appname text - &lt;BR /&gt;&lt;BR /&gt;Tue Apr 19 13:01:03 PDT 2011 : flle system&lt;BR /&gt;Tue Apr 19 13:27:13 PDT 2011 : Appname1&lt;BR /&gt;&lt;BR /&gt;***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: flle system&lt;BR /&gt;Host: localhost&lt;BR /&gt;Address: 127.0.0.1&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:01:03 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;(Return code of 127 is out of bounds - plugin may be missing)&lt;BR /&gt;&lt;BR /&gt;Console : http://URL&lt;BR /&gt;&lt;BR /&gt;***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: Appname1&lt;BR /&gt;Host: remotehost.domain.com&lt;BR /&gt;Address: x.x.x.x&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:27:13 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;Connection refused&lt;BR /&gt;&lt;BR /&gt;Console http://URL&lt;BR /&gt;&lt;BR /&gt;It will take me time to come up with a script but I am working.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Allan.</description>
      <pubDate>Wed, 20 Apr 2011 05:40:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779387#M640881</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-20T05:40:25Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779388#M640882</link>
      <description>simplified version as alternative calling from a shell ;&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;/path-to-perl/perl -ne 'print if /Appname/|/Date/' /tmp/mail &amp;gt;&lt;BR /&gt;/tmp/mail_problem&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2011 07:05:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779388#M640882</guid>
      <dc:creator>Hakki Aydin Ucar</dc:creator>
      <dc:date>2011-04-20T07:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779389#M640883</link>
      <description>Hi JRF,Others!&lt;BR /&gt;&lt;BR /&gt;I have made the following script - &lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/perl&lt;BR /&gt;&lt;BR /&gt;use strict;&lt;BR /&gt;&lt;BR /&gt;my ($app,$cmd);&lt;BR /&gt;open(FH,"&amp;lt;","/tmp/mail") or die "Fail- $!\n";&lt;BR /&gt;open(FW,"&amp;gt;","/tmp/mail_test") or die "Fail- $!\n";&lt;BR /&gt;while(&lt;FH&gt;) {&lt;BR /&gt;chomp;&lt;BR /&gt;if(/Appname:(.*)/) {  $app=$1; }&lt;BR /&gt;if (/Date\/Time:(.*)/) { printf FW "%s:%s\n",$1,$app; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;$cmd='mail -s "mail subject here" allan@mail.com &amp;lt; /tmp/mail_test 2&amp;gt;/tmp/error_mail';&lt;BR /&gt;system($cmd);&lt;BR /&gt;if ( $? ne 0 ) { die "Failure - while sending email. Please check file /tmp/error_mail \n"; }&lt;BR /&gt;close(FW);&lt;BR /&gt;close(FH);&lt;BR /&gt;&lt;BR /&gt;Please review and let me know of any pitfall(any stale filhandle).&lt;BR /&gt;&lt;BR /&gt;In addition to Date/Appname, I am struggling a bit with printing rest of the alert text after printing Date/Appname.. Can you help?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Allan.&lt;/FH&gt;</description>
      <pubDate>Wed, 20 Apr 2011 19:10:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779389#M640883</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-20T19:10:17Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779390#M640884</link>
      <description>I have also added delete(un-link) to the bottom of script to clean up the file(s).&lt;BR /&gt;&lt;BR /&gt;close(FW);&lt;BR /&gt;close(FH);&lt;BR /&gt;&lt;BR /&gt;unlink "/tmp/mail" or warn "Could not delete email: $!";; ;</description>
      <pubDate>Wed, 20 Apr 2011 19:15:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779390#M640884</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-20T19:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779391#M640885</link>
      <description>Additionally can we also get host as well, so the alert should look like - &lt;BR /&gt;&lt;BR /&gt;======&lt;BR /&gt;Appname1:remotehost.domain.com:Tue Apr 19 13:27:13 PDT 2011&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: flle system&lt;BR /&gt;Host: localhost&lt;BR /&gt;Address: 127.0.0.1&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:01:03 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;(Return code of 127 is out of bounds - plugin may be missing)&lt;BR /&gt;&lt;BR /&gt;Console : http://URL&lt;BR /&gt;***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: Appname1&lt;BR /&gt;Host: remotehost.domain.com&lt;BR /&gt;Address: x.x.x.x&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:27:13 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;Connection refused&lt;BR /&gt;&lt;BR /&gt;Console http://URL&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Allan.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2011 21:06:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779391#M640885</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-20T21:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779392#M640886</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; Additionally can we also get host as well, so the alert should look like - &lt;BR /&gt;&lt;BR /&gt;======&lt;BR /&gt;Appname1:remotehost.domain.com:Tue Apr 19 13:27:13 PDT 2011&lt;BR /&gt;&lt;BR /&gt;This is where YOU try to really understand how the appname came to be, and replicate for the host.&lt;BR /&gt;&lt;BR /&gt;(Untested!) solution below:&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein&lt;BR /&gt;&lt;BR /&gt;Instead of &lt;BR /&gt;&lt;BR /&gt;&amp;gt; if(/Appname:(.*)/) { $app=$1; }&lt;BR /&gt;&amp;gt; if (/Date\/Time:(.*)/) { printf FW "%s:%s\n",$1,$app; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;try (saving 4 bytes on first line :^) :&lt;BR /&gt;&lt;BR /&gt;$app = $1 if /Appname:(.*)/;&lt;BR /&gt;$host = $1 if /^Host:(.*)/;&lt;BR /&gt;if (/Date\/Time:(.*)/) { printf FW "%s:%s:%s\n",$app,$host,$1; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2011 21:40:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779392#M640886</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2011-04-20T21:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779393#M640887</link>
      <description>That worked! Thanks,&lt;BR /&gt;&lt;BR /&gt;Last thing I need is to append all alerts to the bottom of this list.So something like this - &lt;BR /&gt;&lt;BR /&gt;Tue Apr 19 13:01:03 PDT 2011 : flle system:Host&lt;BR /&gt;Tue Apr 19 13:27:13 PDT 2011 : Appname1:Host&lt;BR /&gt;&lt;BR /&gt;***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: flle system&lt;BR /&gt;Host: localhost&lt;BR /&gt;Address: 127.0.0.1&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:01:03 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;(Return code of 127 is out of bounds - plugin may be missing)&lt;BR /&gt;&lt;BR /&gt;Console : http://URL&lt;BR /&gt;***** Alert *****&lt;BR /&gt;&lt;BR /&gt;Notification Type: PROBLEM&lt;BR /&gt;&lt;BR /&gt;Appname: Appname1&lt;BR /&gt;Host: remotehost.domain.com&lt;BR /&gt;Address: x.x.x.x&lt;BR /&gt;State: CRITICAL&lt;BR /&gt;&lt;BR /&gt;Date/Time: Tue Apr 19 13:27:13 PDT 2011&lt;BR /&gt;&lt;BR /&gt;Additional Info:&lt;BR /&gt;&lt;BR /&gt;Connection refused&lt;BR /&gt;&lt;BR /&gt;Console http://URL&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Allan.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 20 Apr 2011 22:06:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779393#M640887</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-20T22:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779394#M640888</link>
      <description>Tried $_ but I am not getting what I want. &lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Allan.</description>
      <pubDate>Wed, 20 Apr 2011 22:32:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779394#M640888</guid>
      <dc:creator>Allanm</dc:creator>
      <dc:date>2011-04-20T22:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: Perl equivalent needed</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779395#M640889</link>
      <description>&lt;BR /&gt;Hmmm, not sure exactly what you  want, and not sure what you tried with $_ but maybe this helps?&lt;BR /&gt;&lt;BR /&gt;To attach all the original message lines you basically have 2 choices.&lt;BR /&gt;&lt;BR /&gt;1) stash them all in an array as you process, then print that array after printing the headlines.&lt;BR /&gt;&lt;BR /&gt;2) after gathering and printing the headlines, re-read the source and print to log&lt;BR /&gt;&lt;BR /&gt;1)&lt;BR /&gt;&lt;BR /&gt;while(&lt;FH&gt;) {&lt;BR /&gt; push @everything, $_;&lt;BR /&gt; chomp;&lt;BR /&gt; $app = $1 if /Appname:(.*)/;&lt;BR /&gt; $host = $1 if /^Host:(.*)/;&lt;BR /&gt; if (/Date\/Time:(.*)/) { printf FW  "%s:%s:%s\n",$app,$host,$1; }&lt;BR /&gt;}&lt;BR /&gt;print FW @everything;&lt;BR /&gt;$cmd='mail ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2)&lt;BR /&gt;&lt;BR /&gt;while(&lt;FH&gt;) {&lt;BR /&gt; chomp;&lt;BR /&gt; $app = $1 if /Appname:(.*)/;&lt;BR /&gt; $host = $1 if /^Host:(.*)/;&lt;BR /&gt; if (/Date\/Time:(.*)/) { printf FW  "%s:%s:%s\n",$app,$host,$1; }&lt;BR /&gt;}&lt;BR /&gt;seek FH,0,0;   # back to the beginning&lt;BR /&gt;print FW &lt;FH&gt;; # dump it all&lt;BR /&gt;&lt;BR /&gt;$cmd='mail...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;my tests....&lt;BR /&gt;# cat x.txt&lt;BR /&gt;aap&lt;BR /&gt;test: xxx&lt;BR /&gt;noot&lt;BR /&gt;test: yyy&lt;BR /&gt;mies&lt;BR /&gt;&lt;BR /&gt;1) # perl -e "open X,qq(&lt;X.TXT&gt;) {push @everything,$_; print if /test/} print @everything"&lt;BR /&gt;&lt;BR /&gt;2) # perl -e 'open X,qq(&lt;X.TXT&gt;) {print if /test/}; seek X,0,0; print &lt;X&gt;'&lt;BR /&gt;&lt;BR /&gt;both giving:&lt;BR /&gt;test: xxx&lt;BR /&gt;test: yyy&lt;BR /&gt;aap&lt;BR /&gt;test: xxx&lt;BR /&gt;noot&lt;BR /&gt;test: yyy&lt;BR /&gt;mies&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Good luck!&lt;BR /&gt;Hein&lt;BR /&gt;&lt;/X&gt;&lt;/X.TXT&gt;&lt;/X.TXT&gt;&lt;/FH&gt;&lt;/FH&gt;&lt;/FH&gt;</description>
      <pubDate>Wed, 20 Apr 2011 22:34:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/perl-equivalent-needed/m-p/4779395#M640889</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2011-04-20T22:34:53Z</dc:date>
    </item>
  </channel>
</rss>

