<?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: ssh return codes in dcl script in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218069#M57088</link>
    <description>I'm back about this problem again.  My code works great when I create a command file to ship over and execute, but I'm trying to just do a one-line command, like change a password in AUTHORIZE, but for obvious reasons, I don't want to create a command file containing a password to ship over.  When I try to get the return status of a DCL command, the procedure developed in this thread (reading the status in sys$pipe and putting it in a logical) doesn't seem to work.  Has anyone done this before?  Thanks for all the help!</description>
    <pubDate>Fri, 17 Oct 2008 15:17:51 GMT</pubDate>
    <dc:creator>Thomas A. Williams</dc:creator>
    <dc:date>2008-10-17T15:17:51Z</dc:date>
    <item>
      <title>ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218053#M57072</link>
      <description>I've got a DCL procedure that creates .COM files, pushes them over via scp, then executest them via SSH. Part of the .COM file grabs the return code and sticks in in a file, to SCP back, because that's the only way I could figure out how to get the status of the remote command. This works MOST of the time, but every now and then, either the file is empty, or never makes it back to the originating node.  Has anybody seen this behavior? I'm running VMS 7.3-2 with TCP V5.4 ECO-7. and the SSH ECO 7E patch.</description>
      <pubDate>Tue, 17 Jun 2008 16:08:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218053#M57072</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-17T16:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218054#M57073</link>
      <description>Hi Thomas:&lt;BR /&gt;&lt;BR /&gt;Since this is on a *VMS* operating system, you should post in the *OpenVMS* forum.  This is HP-UX.&lt;BR /&gt;&lt;BR /&gt;Ask a moderator to move this post by making a request here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums12.itrc.hp.com/service/forums/questionanswer.do?threadId=1236703" target="_blank"&gt;http://forums12.itrc.hp.com/service/forums/questionanswer.do?threadId=1236703&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Jun 2008 16:13:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218054#M57073</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2008-06-17T16:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218055#M57074</link>
      <description>I thought I was in the VMS networking list, sorry.&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Jun 2008 16:18:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218055#M57074</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-17T16:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218056#M57075</link>
      <description>In any Unix-like environment, the return code of the SSH process will be the same as the return code of the remote process, or 255 if a connection error occurred.&lt;BR /&gt;&lt;BR /&gt;I would expect it to work about the same in the VMS environment, unless VMS explicitly requires different behaviour.&lt;BR /&gt;&lt;BR /&gt;MK</description>
      <pubDate>Tue, 17 Jun 2008 16:24:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218056#M57075</guid>
      <dc:creator>Matti_Kurkela</dc:creator>
      <dc:date>2008-06-17T16:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218057#M57076</link>
      <description>You would expect that. I wish it did. If it worked the way it does in Unix, I wouldn't have to do all this rigamarole.</description>
      <pubDate>Tue, 17 Jun 2008 16:27:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218057#M57076</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-17T16:27:17Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218058#M57077</link>
      <description>Thomas,&lt;BR /&gt;&lt;BR /&gt;Matti wrote&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;or 255 if a connection error occurred.&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;and you reacted &lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt;&lt;BR /&gt;You would expect that. I wish it did.&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;&lt;BR /&gt;Well, THAT would upset ANY VMS status questioning.&lt;BR /&gt;&lt;BR /&gt;In VMS, ANY numeric _ODD_ status is (maybe qualified) _SUCCESS_, and any EVEN status is (maybe severe) ERROR.&lt;BR /&gt;&lt;BR /&gt;So, evaluating a status of value '255' would be considered _successfull_ , for which a call which&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt; &lt;BR /&gt;either the file is empty, or never makes it back to the originating node&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt;&lt;BR /&gt;does not really qualify.&lt;BR /&gt;&lt;BR /&gt;So, the returm code NEEDS to be translated, or REALLY weird things will happen.&lt;BR /&gt;&lt;BR /&gt;(unlike Unixes, where it is up to the programmer to choose which codes mean what to which program, VMS is (and has always been) much more structured in defining such things).&lt;BR /&gt;&lt;BR /&gt;But, obviously, somewhere some things do not go as expected, meaning either the documentation is not respected, or you have found some documenting or programming bug. (And I do not have the facilities to investigate which one applies here)&lt;BR /&gt;&lt;BR /&gt;Proost.&lt;BR /&gt;&lt;BR /&gt;Have one on me.&lt;BR /&gt;&lt;BR /&gt;jpe &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Jun 2008 20:33:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218058#M57077</guid>
      <dc:creator>Jan van den Ende</dc:creator>
      <dc:date>2008-06-17T20:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218059#M57078</link>
      <description>The SSH protocol actually defines the ability for the remote server to return a status code, but does not document any particular interpretation of the status codes.  Of course Unix people want the status codes to be like Unix status codes.&lt;BR /&gt;&lt;BR /&gt;The protocol also specifies the ability to return signal values, which are well defined.</description>
      <pubDate>Tue, 17 Jun 2008 23:46:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218059#M57078</guid>
      <dc:creator>Richard Whalen</dc:creator>
      <dc:date>2008-06-17T23:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218060#M57079</link>
      <description>&lt;!--!*#--&gt;&amp;gt; This works MOST of the time [...]&lt;BR /&gt;&lt;BR /&gt;I haven't seen anything like this, but that&lt;BR /&gt;proves little.&lt;BR /&gt;&lt;BR /&gt;I've seen no evidence that the people who&lt;BR /&gt;wrote the SSH standards thought about any&lt;BR /&gt;non-UNIX-like OS, but I may have missed&lt;BR /&gt;something.&lt;BR /&gt;&lt;BR /&gt;Depending on exactly what your requirements&lt;BR /&gt;are, you might be able to adapt something&lt;BR /&gt;like this:&lt;BR /&gt;&lt;BR /&gt;alp $ define /user_mode sys$command nl:&lt;BR /&gt;alp $ ssh -o "batchmode yes" alp-l "pipe show defa ; write sys$output $status"&lt;BR /&gt;Authentication successful.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;%X00030001:[SMS]&lt;BR /&gt;&lt;BR /&gt;alp $ define /user_mode sys$command nl:&lt;BR /&gt;alp $ ssh -o "batchmode yes" alp-l "pipe show fred ; write sys$output $status"&lt;BR /&gt;Authentication successful.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; \FRED\IVKEYW, unrecognized keyword - check validity and spelling&lt;BR /&gt;%X00038060&lt;BR /&gt;&lt;BR /&gt;alp $&lt;BR /&gt;&lt;BR /&gt;alp $ write sys$output f$message( %X00030001)&lt;BR /&gt;%CLI-S-NORMAL, normal successful completion&lt;BR /&gt;&lt;BR /&gt;alp $ write sys$output f$message( %X00038060)&lt;BR /&gt;%CLI-W-IVKEYW, unrecognized keyword - check validity and spelling&lt;BR /&gt;&lt;BR /&gt;(Your software is a bit newer than mine, so&lt;BR /&gt;you may not need all the quirk work-arounds.)&lt;BR /&gt;&lt;BR /&gt;The terminal carriage control is pretty bad,&lt;BR /&gt;as usual, but it may easier to parse than to&lt;BR /&gt;look at.  Or, write more to SYS$OUTPUT before&lt;BR /&gt;the important final status.</description>
      <pubDate>Wed, 18 Jun 2008 01:09:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218060#M57079</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-06-18T01:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218061#M57080</link>
      <description>I'm doing something similar, except I write the status to a file, then scp that file back, so I can read it and determine what to do next. The procedure will run for a bunch of iterations, passing status back-and-forth fine, and then it'll randomly either not generate a status, or push back an empty file.</description>
      <pubDate>Wed, 18 Jun 2008 13:44:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218061#M57080</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-18T13:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218062#M57081</link>
      <description>&amp;gt; I'm doing something similar, except [...]&lt;BR /&gt;&lt;BR /&gt;Except it's different.&lt;BR /&gt;&lt;BR /&gt;Knowing nothing, I'd guess that your status&lt;BR /&gt;file may not have been written and closed by&lt;BR /&gt;the time you try to fetch it.  Feeding a&lt;BR /&gt;status value back through stdout should&lt;BR /&gt;avoid/evade a problem of that type.&lt;BR /&gt;&lt;BR /&gt;There was a lot to be said for DECnet&lt;BR /&gt;task-to-task communication.</description>
      <pubDate>Wed, 18 Jun 2008 20:52:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218062#M57081</guid>
      <dc:creator>Steven Schweda</dc:creator>
      <dc:date>2008-06-18T20:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218063#M57082</link>
      <description>Thanks for the pointers. I just can't figure out how to read the output from the remote command into a local symbol.  Can you give me an example?</description>
      <pubDate>Mon, 23 Jun 2008 14:24:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218063#M57082</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-23T14:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218064#M57083</link>
      <description>&lt;!--!*#--&gt;How about extending Steve Schweda's prior example?&lt;BR /&gt;&lt;BR /&gt;$ pipe ssh nodex "pipe show fred ; write sys$output $status" | -&lt;BR /&gt;  search sys$pipe "%X" | ( Read Sys$Pipe x ; Define/Job x &amp;amp;x )&lt;BR /&gt;$ status := %'f$extract(0,8,f$element(1,"%",f$trnlnm("x","lnm$job")))'&lt;BR /&gt;$ deassign/job x&lt;BR /&gt;$ show symbol status</description>
      <pubDate>Mon, 23 Jun 2008 17:13:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218064#M57083</guid>
      <dc:creator>Jim_McKinney</dc:creator>
      <dc:date>2008-06-23T17:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218065#M57084</link>
      <description>I figured out I could define SYS$OUTPUT to a file before the SSH, then go massage that, but this is MUCH better! Thanks!  I'm still a novice to PIPE, but this example will go a long way.</description>
      <pubDate>Mon, 23 Jun 2008 17:49:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218065#M57084</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-23T17:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218066#M57085</link>
      <description>&amp;gt; $ status := %'f$extract(0,8,f$element(1,"%",f$trnlnm("x","lnm$job")))'&lt;BR /&gt;&lt;BR /&gt;Correction - this command line should specify that the f$extract lexical take the 8 character string beginning at position 1 and not 0.&lt;BR /&gt;&lt;BR /&gt;$ status := %'f$extract(1,8,f$element(1,"%",f$trnlnm("x","lnm$job")))'</description>
      <pubDate>Mon, 23 Jun 2008 18:19:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218066#M57085</guid>
      <dc:creator>Jim_McKinney</dc:creator>
      <dc:date>2008-06-23T18:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218067#M57086</link>
      <description>It needs an "X" after the "%" too, but I didn't want to nitpick.&lt;BR /&gt;&lt;BR /&gt;$ status := %X'f$extract(1,8,f$element(1,"%",f$trnlnm("x","lnm$job")))'&lt;BR /&gt;&lt;BR /&gt;(Now if I could get an exit status from a remote command procedure, I'd be in heaven!)</description>
      <pubDate>Mon, 23 Jun 2008 18:32:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218067#M57086</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-23T18:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218068#M57087</link>
      <description>got that working too!</description>
      <pubDate>Mon, 23 Jun 2008 18:42:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218068#M57087</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-06-23T18:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218069#M57088</link>
      <description>I'm back about this problem again.  My code works great when I create a command file to ship over and execute, but I'm trying to just do a one-line command, like change a password in AUTHORIZE, but for obvious reasons, I don't want to create a command file containing a password to ship over.  When I try to get the return status of a DCL command, the procedure developed in this thread (reading the status in sys$pipe and putting it in a logical) doesn't seem to work.  Has anyone done this before?  Thanks for all the help!</description>
      <pubDate>Fri, 17 Oct 2008 15:17:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218069#M57088</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-10-17T15:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218070#M57089</link>
      <description>Trump the problem?&lt;BR /&gt;&lt;BR /&gt;Have the procedure self-determine and set a pre-expired random password, and have the procedure communicate that value with the user.  This could well apply a second-level trumping (assuming a web server is around, either Apache or a lighter-weight option), and run this whole password reset sequence as a CGI script, using https and email.  (Here, you could conceivably use personally-issued certificates.)&lt;BR /&gt;&lt;BR /&gt;Or go to certificates entirely, and get rid of passwords?&lt;BR /&gt;&lt;BR /&gt;Or go to kerberos, and reset the password everywhere?&lt;BR /&gt;&lt;BR /&gt;Or provide a generic and captive login on the host that performs the reset for the user.  How you authenticate that user is an open (and local) question; these sorts of sequences can be secure, or can potentially be quite insecure.&lt;BR /&gt;&lt;BR /&gt;As for the sequence itself, DCL can provide basic client-server; it's not great, but you can prompt for the sequence or the password over the link and then use symbol substitution directly.   Here's an analogous (though DECnet-based) client-server sequence:&lt;BR /&gt;&lt;BR /&gt;h71000.www7.hp.com/wizard/wiz_0159.html &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Oct 2008 15:39:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218070#M57089</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2008-10-17T15:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218071#M57090</link>
      <description>Thanks for the suggestions, but I know how to do this with DECnet. It's SSH that's the problem. It would also be nice to have this ability to get the return code for remote commands in other cases, not just for setting passwords.</description>
      <pubDate>Fri, 17 Oct 2008 15:55:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218071#M57090</guid>
      <dc:creator>Thomas A. Williams</dc:creator>
      <dc:date>2008-10-17T15:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: ssh return codes in dcl script</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218072#M57091</link>
      <description>I don't know of a way where this can be directly implemented in a reliable fashion; I'd use some sort of a variant or alternative.  (Yes, that you're seeking ssh is obvious.)&lt;BR /&gt;&lt;BR /&gt;One ssh-based approach might involve writing your own solution on top of the ssh transport; a so-called ssh subsystem.  (fish is a variation on this.)  Another approach would involve port forwarding.  That's real work.&lt;BR /&gt;&lt;BR /&gt;The generic difficulty here is the OpenVMS ssh daemon  doesn't seem to be intended for this sort of thing; the sftp and scp pieces are present, but I don't know that HP supports other or user-written subsystems. (That written, the daemon does have port forwarding.)  And that the OpenVMS ssh client is fairly weird and weak; it's definitely not what Unix users are accustomed to.&lt;BR /&gt;&lt;BR /&gt;A solution akin to ssh -Y and its port forwarding (where the remote process does its thing, aiming its communications back over the link) would allow you to launch this stuff remotely, but you're still left to script part of this under bash or under DCL; on the client end. &lt;BR /&gt;&lt;BR /&gt;As for a sign-up based approach, I've a fairly extensive and extensible user registration environment that's used on one of the public-access clusters; it's how you sign up for a username.  Extending that to provide password reset wouldn't be a big effort.  Full source code is available for download:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://64.223.189.234/labsnotes/newuser102.zip" target="_blank"&gt;http://64.223.189.234/labsnotes/newuser102.zip&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Cited alternative approaches are likely easier, and more reliable.  DCL integration with TCP and with common IP applications is, well, lacking.  As you've found.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Oct 2008 17:06:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/ssh-return-codes-in-dcl-script/m-p/4218072#M57091</guid>
      <dc:creator>Hoff</dc:creator>
      <dc:date>2008-10-17T17:06:23Z</dc:date>
    </item>
  </channel>
</rss>

