<?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: Check return code via FTP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190777#M164680</link>
    <description>Correct, but if the receiver doesn't receive the file that's ok. The problem we are trying to avoid is the reciever thinking they have received the complete file. They came up with the idea of us sending a blank file for them to check for. &lt;BR /&gt;&lt;BR /&gt;If the FTP is successful I want to send another file. If it isn't, then I don't want to. Simple.</description>
    <pubDate>Thu, 12 Feb 2004 17:09:26 GMT</pubDate>
    <dc:creator>Samuel_10</dc:creator>
    <dc:date>2004-02-12T17:09:26Z</dc:date>
    <item>
      <title>Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190761#M164664</link>
      <description>Here's my current FTP script that I run from another script via a cron job every night.&lt;BR /&gt;&lt;BR /&gt;cd /outgoing&lt;BR /&gt;ftp -n -v &amp;gt; logfile.log &amp;lt;&amp;lt;-EOF&lt;BR /&gt;  open 127.0.0.1&lt;BR /&gt;  user user mypassword&lt;BR /&gt;  ascii&lt;BR /&gt;  put $1 'FTPFILE'&lt;BR /&gt;  bye&lt;BR /&gt;EOF&lt;BR /&gt;&lt;BR /&gt;I would like to add a check to this so that if the put fails somthing else happens. If we get a return code of anythin not = to 0 then we want to do the following. Can this be done within the FTP or does another FTP have to be done? Need some help on this. PLease mention exact steps. Thanks.&lt;BR /&gt;&lt;BR /&gt;ascii&lt;BR /&gt;put blankfile 'BLANKFILE'&lt;BR /&gt;quit</description>
      <pubDate>Thu, 12 Feb 2004 14:40:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190761#M164664</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T14:40:01Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190762#M164665</link>
      <description>Actually, FTP uses 2 as a good return. By far, the better method is to use Perl's Net::FTP module; you get error checking for free.&lt;BR /&gt;&lt;BR /&gt;Try this Perl script:&lt;BR /&gt;&lt;BR /&gt;ftpput.pl myfile1 myfile2&lt;BR /&gt;STAT=${?}&lt;BR /&gt;if [[ ${STAT} -eq 0 ]]&lt;BR /&gt;then&lt;BR /&gt;  echo "All is well"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;It will login (change the host, user, and password to suit your needs) and then  set ascii mode, next it will put the files passed on the command line and actually resend on failure (up to 5 times).&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 14:49:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190762#M164665</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-12T14:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190763#M164666</link>
      <description>Samuel -&lt;BR /&gt;Actually, since you were smart enough to create the log file during the ftp process, your error checking can go against the log file.&lt;BR /&gt;We commonly do as you have done and check the log file for may different conditions, i.e. byte counts, not connected messages, etc.&lt;BR /&gt;You get the idea.&lt;BR /&gt;&lt;BR /&gt;Best of luck.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;dl</description>
      <pubDate>Thu, 12 Feb 2004 15:01:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190763#M164666</guid>
      <dc:creator>Dave La Mar</dc:creator>
      <dc:date>2004-02-12T15:01:14Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190764#M164667</link>
      <description>OK but I would have to do a separate FTP to implement the method of checking the logfile. Would I just have to do a grep on the file or something? I'd prefer to just use the FTP command directly.</description>
      <pubDate>Thu, 12 Feb 2004 15:05:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190764#M164667</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T15:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190765#M164668</link>
      <description>I have run a test.&lt;BR /&gt;&lt;BR /&gt;ran a script that failed on a put but was able to login.&lt;BR /&gt;&lt;BR /&gt;$? was still 0&lt;BR /&gt;&lt;BR /&gt;Thats probably because the login didn't fail.&lt;BR /&gt;&lt;BR /&gt;Even after a failed login the error code was zero.&lt;BR /&gt;&lt;BR /&gt;A look at the help commands after an interactive ftp login reveals nothing that would seem to be helful&lt;BR /&gt;&lt;BR /&gt;After the transfer though you can do this:&lt;BR /&gt;&lt;BR /&gt;ls -la $1&lt;BR /&gt;&lt;BR /&gt;At least then you'll get output to stdio that you can route to a file and process for errors later.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Thu, 12 Feb 2004 15:14:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190765#M164668</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-02-12T15:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190766#M164669</link>
      <description>While our Internet Connection was down I did some further research.&lt;BR /&gt;&lt;BR /&gt;If you were transferring the file say via scp command line, you could check return codes after the transfer.&lt;BR /&gt;&lt;BR /&gt;scp thisfile targethost://target_directory&lt;BR /&gt;rc=$?&lt;BR /&gt;&lt;BR /&gt;if [ $rc -ne 0 ]&lt;BR /&gt;then&lt;BR /&gt;  echo "Complain ... transfer failed"&lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;I have however noticed even on good transfers to a HP-9000 box having random seed problems that the return code has not always been zero.&lt;BR /&gt;&lt;BR /&gt;I assume that once I resolve that issue my methodology will be reliable.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 15:18:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190766#M164669</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2004-02-12T15:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190767#M164670</link>
      <description>You need to do a man ftpd for an explanation of replies sent to the ftp client upon receipt of commands. The actual replies considt of 3 digits but in almost all cases, all you need to do is examine the first (leftmost) digit and if it is a '2' then all is well. NOTE: This has NOTHING to do with the exit status of ftp.&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 15:21:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190767#M164670</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-12T15:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190768#M164671</link>
      <description>Ok I'm FTPing FROM HP to an MVS. So the return codes may not be the same on both. Looks like this is pretty tough to do.</description>
      <pubDate>Thu, 12 Feb 2004 15:27:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190768#M164671</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T15:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190769#M164672</link>
      <description>OK looks like unless I use Perl then there's no way "inside" the FTP script to do error handling.</description>
      <pubDate>Thu, 12 Feb 2004 15:55:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190769#M164672</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T15:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190770#M164673</link>
      <description>Samuel -&lt;BR /&gt;We also ftp to and from a mainframe, but may of the error conditions are the same. In the ftp script, following the EOF, grep your log file for failure conditions or successful conditions.&lt;BR /&gt;If the grep is for failure, a RC=0 would idicate that particular failure was found. Using an if [ $RC = 0 ]&lt;BR /&gt;          then&lt;BR /&gt;          ux2dos logfile.log | uuencode logfile.txt | mailx -m -s "Failure in FTP" someone@somewhere.com&lt;BR /&gt;          fi&lt;BR /&gt;That will email the log file as an attachment and notify an interested party as to the failure. The interested party will see the cause for failure in the log file.&lt;BR /&gt;&lt;BR /&gt;On critical jobs we notify our operations department as well as others. If a call is necessary, ops calls the interested party.&lt;BR /&gt;In some cases we actually echo recoverin instruction to a file and then include it in the email as the body, i.e. (after the someon@somewhere.com) &amp;lt; recovery_instructions.file&lt;BR /&gt;&lt;BR /&gt;I really believe you have all you need to perform what you desire.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;dl&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 15:58:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190770#M164673</guid>
      <dc:creator>Dave La Mar</dc:creator>
      <dc:date>2004-02-12T15:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190771#M164674</link>
      <description>OK I'll go back to my original email.&lt;BR /&gt;&lt;BR /&gt;"PLease mention exact steps. Thanks."&lt;BR /&gt;&lt;BR /&gt;This is what we want to do in response to a failure.&lt;BR /&gt;&lt;BR /&gt;"ascii&lt;BR /&gt;put blankfile 'BLANKFILE'&lt;BR /&gt;quit"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Looks like the above need to be a separate FTP that needs to be run based on the result of a grep of the log. I was thinking of this before but I would have preferred to keep only the one FTP script. I see why someone mentioned Perl. I have no experience with PErl so that's not an option for this rigr now.</description>
      <pubDate>Thu, 12 Feb 2004 16:14:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190771#M164674</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T16:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190772#M164675</link>
      <description>OK so how would my if look if I was seeing if I got any results back from the grep. I'm going to search for a certain sequence in a line.</description>
      <pubDate>Thu, 12 Feb 2004 16:30:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190772#M164675</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T16:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190773#M164676</link>
      <description>I have a really strange question for you. If the put of the real file failed, what makes you think that a put of the blankfile will succeed?&lt;BR /&gt;&lt;BR /&gt;This is a no-brainer even if you know no Perl because the changes are so easy.&lt;BR /&gt;&lt;BR /&gt;1) On your HP-UX box, perl -v.&lt;BR /&gt;If that comes back with a version 5.6.1 or greater you are good to go as Net::FTP will be loaded for you otherwise should downlaod and install Perl from &lt;A href="http://hpux.connect.org.uk/hppd/hpux/Languages/perl-5.8.3/." target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Languages/perl-5.8.3/.&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;2) I would now create a soft link for Perl in /usr/bin.&lt;BR /&gt;e.g. ln -s /opt/perl5/bin/perl /usr/bin/perl&lt;BR /&gt;&lt;BR /&gt;3) The changes to the previously posted script are:&lt;BR /&gt;&lt;BR /&gt;my $ftp = Net::FTP-&amp;gt;new("remotehost",Debug =&amp;gt; 0);&lt;BR /&gt;to&lt;BR /&gt;&lt;BR /&gt;my $ftp = Net::FTP-&amp;gt;new("127.0.0.1",Debug =&amp;gt; 0);&lt;BR /&gt;&lt;BR /&gt;------------------------------------&lt;BR /&gt;$ftp-&amp;gt;login("cstephen","topsecret");&lt;BR /&gt;to&lt;BR /&gt;$ftp-&amp;gt;login("user","mypassword");&lt;BR /&gt;&lt;BR /&gt;and that's it. &lt;BR /&gt;&lt;BR /&gt;If you insist upon trying to put the "blankfile" that is left as a dubious exercise. You could, of course, look at the exit status of the perl script and invoke a 2nd ftpput.pl blankfile and examine ${?} to see if that transmission was successful.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 16:41:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190773#M164676</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-12T16:41:24Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190774#M164677</link>
      <description>Here is a snip of the error checking in one of our ftp scripts.&lt;BR /&gt;&lt;BR /&gt;grep 'Not connected' $FTP_LOG 1&amp;gt;/dev/null 2&amp;gt;/dev/null                                                                                    &lt;BR /&gt;echo $? | read RC                                                                                                                        &lt;BR /&gt;grep 'full'  $FTP_LOG 1&amp;gt;/dev/null 2&amp;gt;/dev/null                                                                                            &lt;BR /&gt;echo $? | read RC1                                                                                                                       &lt;BR /&gt;grep 'fail'  $FTP_LOG 1&amp;gt;/dev/null 2&amp;gt;/dev/null                                                                                            &lt;BR /&gt;echo $? | read RC2                                                                                                                       &lt;BR /&gt;grep 'Error writing'  $FTP_LOG 1&amp;gt;/dev/null 2&amp;gt;/dev/null                                                                                   &lt;BR /&gt;echo $? | read RC3                                                                                                                       &lt;BR /&gt;                                                                                                                                         &lt;BR /&gt;if [ $RC -lt 1 -o $RC1 -lt 1 -o $RC2 -lt 1 -o $RC3 -lt 1 ]                                                                               &lt;BR /&gt;        then                                                                                                                             &lt;BR /&gt;            echo "" &amp;gt;&amp;gt; $SCRIPT_HOME/messages                                                                                             &lt;BR /&gt;            tail -5 $FTP_LOG &amp;gt;&amp;gt; $SCRIPT_HOME/messages                                                                                    &lt;BR /&gt;            echo "" &amp;gt;&amp;gt; $SCRIPT_HOME/messages                                                                                             &lt;BR /&gt;            echo "Problem with the CMSSVR server." &amp;gt;&amp;gt; $SCRIPT_HOME/messages                                                              &lt;BR /&gt;            echo "" &amp;gt;&amp;gt; $SCRIPT_HOME/messages                                                                                             &lt;BR /&gt;            echo "Gottschalks Operations ==&amp;gt; Review recovery procedures."&amp;gt;&amp;gt; $SCRIPT_HOME/messages                                        &lt;BR /&gt;            mailx -s "Nightly FTP failed for $SCRIPT_HOME" $MAIL_LIST &amp;lt; $SCRIPT_HOME/messages                                            &lt;BR /&gt;        exit                                                                                                                             &lt;BR /&gt;                                                                                                                                         &lt;BR /&gt; 1.  Of course grep -e may be used, but, in this case, I was interested in                                                               &lt;BR /&gt; the particular failure.                                                                                                                 &lt;BR /&gt; 2. $MAIL_LIST is a variable (as may addresses as you'd like) like =&amp;gt; export MAIL_LIST="someone@somewhere.com someone.else@somewhere.com"&lt;BR /&gt; 3. $FTP_LOG is your ftplog.log                                                                                                          &lt;BR /&gt; 4. $SCRIPT_HOME is the path to your script directory.                                                                                   &lt;BR /&gt; 5. tail -5 $FTP_LOG is generally all the error messages from the log file you will need in the body of the email to determine what happened.                       &lt;BR /&gt; 6. In this example, there is no attachment as all is included in the email body.                                                        &lt;BR /&gt;                                                                                                                                         &lt;BR /&gt; Customize as you see fit.                                                                                                               &lt;BR /&gt; Hope this helps.                                                                                                                        &lt;BR /&gt;                                                                                                                                         &lt;BR /&gt; Best regards,                                                                                                                           &lt;BR /&gt;                                                                                                                                         &lt;BR /&gt; dl                                                                                                                                      &lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 16:47:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190774#M164677</guid>
      <dc:creator>Dave La Mar</dc:creator>
      <dc:date>2004-02-12T16:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190775#M164678</link>
      <description>The reason for the blank file would work is if the dataset on the MVS side ran out of space. The first file would fail partially but the blank file would work and therefore the other side would know, because of the presence of the blank file, that the first file was incomplete.&lt;BR /&gt;&lt;BR /&gt;Yeah I got 5.6.1.</description>
      <pubDate>Thu, 12 Feb 2004 16:48:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190775#M164678</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T16:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190776#M164679</link>
      <description>But iff (iff and only if) the receiver ran out of space. The number of reasons for FTP failures is legion.&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 17:06:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190776#M164679</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-12T17:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190777#M164680</link>
      <description>Correct, but if the receiver doesn't receive the file that's ok. The problem we are trying to avoid is the reciever thinking they have received the complete file. They came up with the idea of us sending a blank file for them to check for. &lt;BR /&gt;&lt;BR /&gt;If the FTP is successful I want to send another file. If it isn't, then I don't want to. Simple.</description>
      <pubDate>Thu, 12 Feb 2004 17:09:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190777#M164680</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T17:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190778#M164681</link>
      <description>So A. Clay,&lt;BR /&gt;&lt;BR /&gt;OK so it seems the Perl method would be the "cleanest" maybe. However it looks like I would end up modifying the default script you sent to include another FTP to maintain that cleaness.&lt;BR /&gt;&lt;BR /&gt;IF I use your method that means another FTP, which is basically like going with a GRREP method and based on the results doing another FTP.</description>
      <pubDate>Thu, 12 Feb 2004 17:19:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190778#M164681</guid>
      <dc:creator>Samuel_10</dc:creator>
      <dc:date>2004-02-12T17:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190779#M164682</link>
      <description>Not really because you could put the check in the same Perl script. It took me under a minute to make that change and I reduced the retries to only 2.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Feb 2004 17:30:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190779#M164682</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-12T17:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Check return code via FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190780#M164683</link>
      <description>I'm an idiot, I missed the attachment.</description>
      <pubDate>Thu, 12 Feb 2004 17:31:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/check-return-code-via-ftp/m-p/3190780#M164683</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2004-02-12T17:31:41Z</dc:date>
    </item>
  </channel>
</rss>

