<?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: DCL Scripting in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950054#M35514</link>
    <description>For periodical jobs, please follow the advice, this has been discussed several times in the past here.&lt;BR /&gt;&lt;BR /&gt;For short, a weekly job can submit itself by&lt;BR /&gt;   submit/after=("today+7-3") 'f$environment("procedure")' &lt;BR /&gt;&lt;BR /&gt;today+7 means in once week, and -3 means at 3:00h .&lt;BR /&gt;&lt;BR /&gt;In addition to reading the VMS FAQ, see HELP DCL date, HELP LEXICAL F$ENVIRONMENT.&lt;BR /&gt;&lt;BR /&gt;What do You mean "Cut" ? If You mean "cat","sed":&lt;BR /&gt;these are Unix utilities, and made available to VMS via the GNV open source project.&lt;BR /&gt;See software/open source from the HP Openvms home page how to get GNV.&lt;BR /&gt;</description>
    <pubDate>Fri, 23 Feb 2007 09:22:44 GMT</pubDate>
    <dc:creator>Joseph Huber_1</dc:creator>
    <dc:date>2007-02-23T09:22:44Z</dc:date>
    <item>
      <title>DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950045#M35505</link>
      <description>Hi&lt;BR /&gt;  Can I know How can I do them?&lt;BR /&gt;1)different ways to redirect the output of a&lt;BR /&gt;dcl command to a file&lt;BR /&gt;2)To grep  all the lines (from a file)with a perticular string/Word and redirect the output  to a file &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jayakrishnan G Naik&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2007 00:49:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950045#M35505</guid>
      <dc:creator>GNJ</dc:creator>
      <dc:date>2007-02-23T00:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950046#M35506</link>
      <description>&lt;!--!*#--&gt;1) Check HELP&lt;BR /&gt;&lt;BR /&gt;1.1) Many commands have build in redirection&lt;BR /&gt;   $&lt;COMMAND&gt; /OUT=&lt;FILE&gt; &lt;ARGUMENTS&gt;&lt;BR /&gt;&lt;BR /&gt;1.2) Re-direct sys$output through temporary logical&lt;BR /&gt;   $define/user sys$output &lt;FILE&gt;&lt;BR /&gt;   $&lt;COMMAND&gt; &lt;ARGUMENTS&gt;&lt;BR /&gt;&lt;BR /&gt;1.3) Place commands in script, capture script triggered output&lt;BR /&gt;   $@&amp;lt;script&amp;gt;/out=&lt;FILE&gt; &lt;ARGUMENTS&gt;&lt;BR /&gt;&lt;BR /&gt;1.4) Pipe, line Unix, but costs a sub-process&lt;BR /&gt;   $pipe &lt;COMMAND&gt; &lt;ARGUMENTS&gt; &amp;gt; &lt;FILE&gt;&lt;BR /&gt;&lt;BR /&gt;1.5) Use terminal session log&lt;BR /&gt;   $set host 0::/log=&lt;FILE&gt;&lt;BR /&gt;&lt;BR /&gt;2)&lt;BR /&gt;2.1) As per 1.1, use build in redirect&lt;BR /&gt;  $search &lt;FILES&gt; &lt;WORDS&gt; /MATCH=xxx /OUT=&lt;FILE&gt;&lt;BR /&gt;&lt;BR /&gt;2.2) As per 1.4, pipe&lt;BR /&gt;  $pipe searc &lt;FILES&gt; &lt;WORDS&gt; | &lt;COMMAND&gt; sys$pipe ...&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Hein van den Heuvel&lt;BR /&gt;HvdH Performance Consulting&lt;BR /&gt;&lt;/COMMAND&gt;&lt;/WORDS&gt;&lt;/FILES&gt;&lt;/FILE&gt;&lt;/WORDS&gt;&lt;/FILES&gt;&lt;/FILE&gt;&lt;/FILE&gt;&lt;/ARGUMENTS&gt;&lt;/COMMAND&gt;&lt;/ARGUMENTS&gt;&lt;/FILE&gt;&lt;/ARGUMENTS&gt;&lt;/COMMAND&gt;&lt;/FILE&gt;&lt;/ARGUMENTS&gt;&lt;/FILE&gt;&lt;/COMMAND&gt;</description>
      <pubDate>Fri, 23 Feb 2007 01:06:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950046#M35506</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-02-23T01:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950047#M35507</link>
      <description>Hi&lt;BR /&gt; Thank you for the valuable info&lt;BR /&gt; I havesome doubts in the below commands&lt;BR /&gt;in 2.1 what does this do?-/MATCH=xxx &lt;BR /&gt;&lt;BR /&gt;in  2.2)|&lt;COMMAND&gt; sys$pipe ...  what is happened after the pipe symbol?&lt;BR /&gt;&lt;BR /&gt;2.1) As per 1.1, use build in redirect&lt;BR /&gt;  $search &lt;FILES&gt; &lt;WORDS&gt; /MATCH=xxx /OUT=&lt;FILE&gt;&lt;BR /&gt;&lt;BR /&gt;2.2) As per 1.4, pipe&lt;BR /&gt;  $pipe searc &lt;FILES&gt; &lt;WORDS&gt; | &lt;COMMAND&gt; sys$pipe ...&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jayakrishnan G Naik&lt;/COMMAND&gt;&lt;/WORDS&gt;&lt;/FILES&gt;&lt;/FILE&gt;&lt;/WORDS&gt;&lt;/FILES&gt;&lt;/COMMAND&gt;</description>
      <pubDate>Fri, 23 Feb 2007 01:53:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950047#M35507</guid>
      <dc:creator>GNJ</dc:creator>
      <dc:date>2007-02-23T01:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950048#M35508</link>
      <description>Hi&lt;BR /&gt;  I got the output as I needed in a file&lt;BR /&gt;I need to send that file to my mail id?&lt;BR /&gt;How can I add this in script?&lt;BR /&gt;&lt;BR /&gt;Is there any way to make this output in excel format so that I can open this file &lt;BR /&gt;with excel?&lt;BR /&gt;&lt;BR /&gt;I need to periodically run this script say&lt;BR /&gt;once in a week how to put it in que to run &lt;BR /&gt;weekly?&lt;BR /&gt;&lt;BR /&gt;Can you please let me know how Can I do this?&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; Regards&lt;BR /&gt;Jayakrishnan G NAIK</description>
      <pubDate>Fri, 23 Feb 2007 02:11:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950048#M35508</guid>
      <dc:creator>GNJ</dc:creator>
      <dc:date>2007-02-23T02:11:01Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950049#M35509</link>
      <description>&amp;gt;&amp;gt; in 2.1 what does this do?-/MATCH=xxx &lt;BR /&gt;&lt;BR /&gt;Use the force: $HELP SEARCH /MATCH&lt;BR /&gt;The xxx stands for specific matching (such as AND or XOR) to do when multiple word are provided. My implied suggestion is the you should look at that as alternative for the typical multiple pipes used for complex greps:&lt;BR /&gt;#grep x &lt;FILES&gt; | grep y | grep -v z&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;gt;&amp;gt; in 2.2)|&lt;COMMAND&gt; sys$pipe ... what is happened after the pipe symbol?&lt;BR /&gt;&lt;BR /&gt;Whatever you fancy! The thought there is that you probably put the output into a file for a reason. If that reason is further processing, then this is possibly better done in redirected through a pipe&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Hein.&lt;/COMMAND&gt;&lt;/FILES&gt;</description>
      <pubDate>Fri, 23 Feb 2007 02:13:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950049#M35509</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-02-23T02:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950050#M35510</link>
      <description>To mail the file you just do a :&lt;BR /&gt;&lt;BR /&gt;$ MAIL filename.ext mailid&lt;BR /&gt;&lt;BR /&gt;(See HELP MAIL for more info and qualifiers).&lt;BR /&gt;&lt;BR /&gt;If you need an EXCEL compatible format, you will have to convert the file yourself.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Fri, 23 Feb 2007 02:35:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950050#M35510</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2007-02-23T02:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950051#M35511</link>
      <description>Regarding regular jobs:&lt;BR /&gt;&lt;BR /&gt;Pls. search the forum, as there have been many threads covering this topic.&lt;BR /&gt;&lt;BR /&gt;regards Kalle</description>
      <pubDate>Fri, 23 Feb 2007 02:36:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950051#M35511</guid>
      <dc:creator>Karl Rohwedder</dc:creator>
      <dc:date>2007-02-23T02:36:53Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950052#M35512</link>
      <description>As Karl indicates, be sure to searcg the forum (or the world!) for prior answers:&lt;BR /&gt;google +site:itrc.hp.com&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Simple example of mail:&lt;BR /&gt;&lt;BR /&gt;$ pipe show dev d | search sys$pipe mounted | mail/sub=mounted sys$pipe &lt;USER&gt;&lt;BR /&gt;&lt;BR /&gt;Simple example of CSV for same data:&lt;BR /&gt;&lt;BR /&gt;$ pipe show dev d | perl -lne "if (/Mounted/){print join("","",(split))" | mail/sub=mounted sys$pipe &lt;USER&gt;&lt;BR /&gt;&lt;BR /&gt;Hein.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/USER&gt;&lt;/USER&gt;</description>
      <pubDate>Fri, 23 Feb 2007 03:37:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950052#M35512</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-02-23T03:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950053#M35513</link>
      <description>&lt;BR /&gt;Hi&lt;BR /&gt;&lt;BR /&gt;  I need to periodically run this script say&lt;BR /&gt;once in a week how to put it in que to run &lt;BR /&gt;weekly?&lt;BR /&gt;&lt;BR /&gt;Can you please let me know how Can I do this?&lt;BR /&gt;&lt;BR /&gt;How to do "Cut", "sed" kind of operations&lt;BR /&gt;in dcl scripts?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Jay</description>
      <pubDate>Fri, 23 Feb 2007 08:28:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950053#M35513</guid>
      <dc:creator>GNJ</dc:creator>
      <dc:date>2007-02-23T08:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950054#M35514</link>
      <description>For periodical jobs, please follow the advice, this has been discussed several times in the past here.&lt;BR /&gt;&lt;BR /&gt;For short, a weekly job can submit itself by&lt;BR /&gt;   submit/after=("today+7-3") 'f$environment("procedure")' &lt;BR /&gt;&lt;BR /&gt;today+7 means in once week, and -3 means at 3:00h .&lt;BR /&gt;&lt;BR /&gt;In addition to reading the VMS FAQ, see HELP DCL date, HELP LEXICAL F$ENVIRONMENT.&lt;BR /&gt;&lt;BR /&gt;What do You mean "Cut" ? If You mean "cat","sed":&lt;BR /&gt;these are Unix utilities, and made available to VMS via the GNV open source project.&lt;BR /&gt;See software/open source from the HP Openvms home page how to get GNV.&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2007 09:22:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950054#M35514</guid>
      <dc:creator>Joseph Huber_1</dc:creator>
      <dc:date>2007-02-23T09:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950055#M35515</link>
      <description>the dcl equivalent of the linux command "cut" is f$extract&lt;BR /&gt;&lt;BR /&gt;see&lt;BR /&gt;&lt;BR /&gt;$ help lex f$extract &lt;BR /&gt;&lt;BR /&gt;You have awk under Vms, define &lt;BR /&gt;gawk :== $ SYS$COMMON:[SYSHLP.EXAMPLES.TCPIP.SNMP]gawk.exe&lt;BR /&gt;&lt;BR /&gt;For sed, I do no know a Vms equivalent</description>
      <pubDate>Fri, 23 Feb 2007 09:40:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950055#M35515</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2007-02-23T09:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950056#M35516</link>
      <description>&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;For sed, I do no know a Vms equivalent&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;Hunter Goatley has ist in his archive: &lt;A href="http://vms.process.com/scripts/fileserv/fileserv.com?SED" target="_blank"&gt;http://vms.process.com/scripts/fileserv/fileserv.com?SED&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;cu,&lt;BR /&gt;  Martin</description>
      <pubDate>Fri, 23 Feb 2007 10:33:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950056#M35516</guid>
      <dc:creator>Martin Vorlaender</dc:creator>
      <dc:date>2007-02-23T10:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950057#M35517</link>
      <description>&amp;gt;&amp;gt; How to do "Cut", "sed" kind of operations&lt;BR /&gt;in dcl scripts?&lt;BR /&gt;&lt;BR /&gt;perl&lt;BR /&gt;&lt;BR /&gt;DCL scripting is a 'whole new world'. Embrace it, don't fight it.&lt;BR /&gt;Think DCL, don't think cut/sed/wc/grep...&lt;BR /&gt;READ the fine manuals, READ the HELP.&lt;BR /&gt;Do NOT try to translate Unix Shell solutions into DCL scripts.&lt;BR /&gt;&lt;BR /&gt;As labadie writes, where a unix person thinks 'cut', A DCL scrill will probably need F$EXTRACT (think substr) for fix positions of F$ELEMENT (think split) for delimited strings.&lt;BR /&gt;&lt;BR /&gt;'sed' will be tricky. There is no easy string replacement, but in 25+ years of DCL programming I rarely missed it. You would send to rebuild a new string from piece rather than replace.&lt;BR /&gt;&lt;BR /&gt;$ new = f$elem(0,"-",old) + "-xx-" + f$elem(2,"-",old)&lt;BR /&gt;&lt;BR /&gt;For fixed length strings, replace in place:&lt;BR /&gt;$ name[4,3] := "xxx"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But you should possibly use Perl or Awk to massage lots of data.&lt;BR /&gt;&lt;BR /&gt;For further and better help, why don't you describe a specific example in more detail.&lt;BR /&gt;Output from which command?&lt;BR /&gt;Sample output inline AND in a .txt attachment&lt;BR /&gt;Which trnasformations?&lt;BR /&gt;Sample result inline AND in same .txt attachment.&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Hein van den Heuvel&lt;BR /&gt;HvdH Performance Consulting&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Feb 2007 11:02:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950057#M35517</guid>
      <dc:creator>Hein van den Heuvel</dc:creator>
      <dc:date>2007-02-23T11:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950058#M35518</link>
      <description>&lt;BR /&gt;The fine doc set is available at &lt;A href="http://h71000.www7.hp.com/doc/" target="_blank"&gt;http://h71000.www7.hp.com/doc/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If you're getting started and don't have someone available, you may consider some of the third party books.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.amazon.com/Writing-Real-Programs-DCL-Technologies/dp/B000FO58MG/sr=8-1/qid=1172250047/ref=sr_1_1/104-7423816-8530324?ie=UTF8&amp;amp;s=books" target="_blank"&gt;http://www.amazon.com/Writing-Real-Programs-DCL-Technologies/dp/B000FO58MG/sr=8-1/qid=1172250047/ref=sr_1_1/104-7423816-8530324?ie=UTF8&amp;amp;s=books&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.amazon.com/OpenVMS-System-Management-Guide-Technologies/dp/1555582435/sr=8-2/qid=1172250047/ref=sr_1_2/104-7423816-8530324?ie=UTF8&amp;amp;s=books" target="_blank"&gt;http://www.amazon.com/OpenVMS-System-Management-Guide-Technologies/dp/1555582435/sr=8-2/qid=1172250047/ref=sr_1_2/104-7423816-8530324?ie=UTF8&amp;amp;s=books&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.openvms.org/pages.php?page=Books" target="_blank"&gt;http://www.openvms.org/pages.php?page=Books&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Andy</description>
      <pubDate>Fri, 23 Feb 2007 12:03:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950058#M35518</guid>
      <dc:creator>Andy Bustamante</dc:creator>
      <dc:date>2007-02-23T12:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: DCL Scripting</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950059#M35519</link>
      <description>Jayakrishnan,&lt;BR /&gt;&lt;BR /&gt;from your Forum Profile:&lt;BR /&gt;&lt;BR /&gt;&lt;QUOTE&gt;&lt;BR /&gt;I have assigned points to 6 of 22 responses to my questions.&lt;BR /&gt;&lt;/QUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;Maybe you can find some time to do some assigning?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#33" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#33&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Mind, I do NOT say you necessarily need to give lots of points. It is fully up to _YOU_ to decide how many. If you consider an answer is not deserving any points, you can also assign 0 ( = zero ) points, and then that answer will no longer be counted as unassigned.&lt;BR /&gt;Consider, that every poster took at least the trouble of posting for you!&lt;BR /&gt;&lt;BR /&gt;To easily find your streams with unassigned points, click your own name somewhere.&lt;BR /&gt;This will bring up your profile.&lt;BR /&gt;Near the bottom of that page, under the caption "My Question(s)" you will find "questions or topics with unassigned points " Clicking that will give all, and only, your questions that still have unassigned postings.&lt;BR /&gt;If you have closed some of those streams, you must "Reopen" them to "Submit points". (After which you can "Close" again)&lt;BR /&gt;&lt;BR /&gt;Thanks on behalf of your Forum colleagues.&lt;BR /&gt;&lt;BR /&gt;PS. - nothing personal in this. I try to post it to everyone with this kind of assignment ratio in this forum. If you have received a posting like this before - please do not take offence - none is intended!&lt;BR /&gt;&lt;BR /&gt;PPS. - Zero points for this.&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe</description>
      <pubDate>Sat, 24 Feb 2007 06:30:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/dcl-scripting/m-p/3950059#M35519</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2007-02-24T06:30:27Z</dc:date>
    </item>
  </channel>
</rss>

