<?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: Need ftp script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6511596#M496629</link>
    <description>&lt;P&gt;&amp;gt;My customer wants the same format as SAP ftp application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The two files seem to be input files and appear to be the same.&lt;/P&gt;</description>
    <pubDate>Tue, 17 Jun 2014 06:54:07 GMT</pubDate>
    <dc:creator>Dennis Handly</dc:creator>
    <dc:date>2014-06-17T06:54:07Z</dc:date>
    <item>
      <title>Need script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6489936#M496602</link>
      <description>&lt;P&gt;Hello experts--&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I require one script for file copying from local server to FTP.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;</description>
      <pubDate>Wed, 28 May 2014 04:33:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6489936#M496602</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-05-28T04:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6490462#M496603</link>
      <description>&lt;P&gt;Something like this?&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://h30499.www3.hp.com/t5/Languages-and-Scripting/Need-to-push-syslog-daily-to-another-server/m-p/6062149#M46020"&gt;http://h30499.www3.hp.com/t5/Languages-and-Scripting/Need-to-push-syslog-daily-to-another-server/m-p/6062149#M46020&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://h30499.www3.hp.com/t5/General/Simple-FTP-script/m-p/2431749#M3521"&gt;http://h30499.www3.hp.com/t5/General/Simple-FTP-script/m-p/2431749#M3521&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 May 2014 10:17:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6490462#M496603</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-05-28T10:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6493306#M496604</link>
      <description>&lt;P&gt;Hello : i will explain the scenario,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pls check attacment &amp;amp; suggest me.&lt;/P&gt;&lt;P&gt;Hope some will provide me the solution ,as i am new to scripting.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 07:58:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6493306#M496604</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-05-30T07:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494136#M496605</link>
      <description>&lt;P&gt;Any reason you provided an Excel file?&amp;nbsp; Is this how you need to get your script input of is this just how you wanted to present your requirements?&amp;nbsp; (Here a text file is better.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is a one time thing, you can just code these values in a script.&amp;nbsp; Or copy the script and change them.&lt;/P&gt;&lt;P&gt;Or you can pass them as parms to the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#!/usr/bin/ksh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# ftp files from SRC_PATH/SRC to TGT on SERVER.&amp;nbsp; Using USER &amp;amp; PASS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SRC_PATH=/usr/sap/RAV/SYS/global/ftp/RMPA&lt;/P&gt;&lt;P&gt;src="RAV_INFO_20*"&lt;/P&gt;&lt;P&gt;TGT=/&lt;/P&gt;&lt;P&gt;SERVER=10.10.10.31&lt;/P&gt;&lt;P&gt;USER=dewqv&lt;/P&gt;&lt;P&gt;PASS="password"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ftp -inv $SERVER &amp;lt;&amp;lt;EOF&lt;BR /&gt;user $USER $PASS&lt;/P&gt;&lt;P&gt;bin&lt;/P&gt;&lt;P&gt;lcd $SRC_PATH&lt;/P&gt;&lt;P&gt;cd $TGT&lt;BR /&gt;mput $src&lt;BR /&gt;bye&lt;/P&gt;&lt;P&gt;EOF&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 06:41:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494136#M496605</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-05-31T06:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494370#M496606</link>
      <description>&lt;P&gt;Thanks a lot sir.....&amp;amp; sorry for puting the excel ...next time i will remember this definately..&lt;/P&gt;&lt;P&gt;However what if i want multiple file to be transfered from HP-UX to windows box.&lt;/P&gt;&lt;P&gt;As this is for the same purpose.We need to transfer few files more than six files from HP-UX to windows bos.&lt;/P&gt;&lt;P&gt;Please suggest me furthere &amp;amp; once again thanks for the guidence.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 03:50:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494370#M496606</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-05-31T03:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494406#M496607</link>
      <description>&lt;P&gt;Dear sir..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I creates the script &amp;amp; run on the test server ....i below is the output ..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# ./ftpcptest&lt;BR /&gt;Connected to 10.10.10.31.&lt;BR /&gt;220-FileZilla Server version 0.9.41 beta&lt;BR /&gt;220-written by Tim Kosse (Tim.Kosse@gmx.de)&lt;BR /&gt;220 Please visit &lt;A target="_blank" href="http://sourceforge.net/projects/filezilla/"&gt;http://sourceforge.net/projects/filezilla/&lt;/A&gt;&lt;BR /&gt;Remote system type is UNIX.&lt;BR /&gt;331 Password required for dewqv&lt;BR /&gt;230 Logged on&lt;BR /&gt;200 Type set to I&lt;BR /&gt;Local directory now /sapmnt/RAV/global/ftp/RMPA&lt;BR /&gt;250 CWD successful. "/" is current directory.&lt;BR /&gt;(local-files) local: bye remote: bye&lt;BR /&gt;bye: No such file or directory&lt;BR /&gt;221 Goodbye&lt;BR /&gt;#&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please suggest .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 05:35:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494406#M496607</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-05-31T05:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494410#M496608</link>
      <description>&lt;P&gt;Dear sir ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to move the below mention file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;# pwd&lt;BR /&gt;/usr/sap/RAV/SYS/global/ftp/RMPA&lt;BR /&gt;# ll&lt;BR /&gt;total 12&lt;BR /&gt;-&lt;FONT color="#FF00FF"&gt;rw-rw----&amp;nbsp;&amp;nbsp; 1 rdvadm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sapsys&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 146 May 27 15:04&lt;/FONT&gt; &lt;FONT color="#FF00FF"&gt;RAV_INFO_20140527_001.PSV&lt;/FONT&gt;&lt;BR /&gt;-rw-rw----&amp;nbsp;&amp;nbsp; 1 rdvadm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sapsys&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2692 May 27 15:02 RAV_MM_20140527_001.PSV&lt;BR /&gt;-rw-rw----&amp;nbsp;&amp;nbsp; 1 rdvadm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sapsys&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 92 May 27 15:03 RAV_VM_20140527_001.PSV&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks ,&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 05:43:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494410#M496608</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-05-31T05:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494426#M496609</link>
      <description>&lt;P&gt;&amp;gt;I need to move the below mentioned file: RAV_INFO_20140527_001.PSV&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I assume you only wanted this one?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It appears that the forum changed my "src=" to lower case.&amp;nbsp; It tried to edit it several times and each time it did it again.&lt;/P&gt;&lt;P&gt;So I changed both to "src".&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 06:44:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494426#M496609</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-05-31T06:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494460#M496610</link>
      <description>&lt;P&gt;Yes sir..i got that &amp;amp; made the changes now it is successfull.......attached is the output&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;therefore i need to move 6 files at a time (all are different name) what changes i need to do in the script pls suggest...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vishal&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 07:36:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494460#M496610</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-05-31T07:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494536#M496611</link>
      <description>&lt;P&gt;&amp;gt;made the changes now it is successful. attached is the output&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(If you are happy with the answers, please click on the kudos star for each helpful answer.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you don't want so much output, you can remove that "v" in -inv.&lt;/P&gt;&lt;P&gt;Also, this script doesn't really catch errors too well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;therefore i need to move 6 files at a time (all are different name)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you have a file matching pattern that will do all 6?&lt;/P&gt;&lt;P&gt;Otherwise you can just include all of them in:&lt;/P&gt;&lt;P&gt;src="file1 file2"&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 11:42:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6494536#M496611</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-05-31T11:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501596#M496612</link>
      <description>Hello sir, yes i made the changes.However i want to cut paste the files.The requirement is when the files get generated on source it will be cut from their &amp;amp; paste to the destination.&lt;BR /&gt;Please suggest...&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; have a great day ahead.&lt;BR /&gt;Regards,&lt;BR /&gt;Vishal</description>
      <pubDate>Fri, 06 Jun 2014 05:57:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501596#M496612</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-06-06T05:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501828#M496613</link>
      <description>&lt;P&gt;&amp;gt;i want to cut paste the files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Files don't get cut &amp;amp; pasted, they get copied and then removed.&amp;nbsp; :-)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After the mput you can simply do:&lt;/P&gt;&lt;P&gt;!rm -f $src&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But since there is no checking for any errors, this may be dangerous.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2014 09:36:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501828#M496613</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-06-06T09:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501836#M496614</link>
      <description>Thanks a lot sir....yes i am discussing the same with my team &amp;amp; we come to the same conclusion.So how could we do the error checking.Please suggest further.</description>
      <pubDate>Fri, 06 Jun 2014 09:46:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501836#M496614</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-06-06T09:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501924#M496615</link>
      <description>Will you please guide me: i want to scheduled the program for every 15 min in a day ,for the week &amp;amp; year as well&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance .....</description>
      <pubDate>Fri, 06 Jun 2014 11:16:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501924#M496615</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-06-06T11:16:40Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501944#M496616</link>
      <description>I am scheduling by the bellow values:&lt;BR /&gt;&lt;BR /&gt;*/15,*,*,* * * * * /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh</description>
      <pubDate>Fri, 06 Jun 2014 11:43:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6501944#M496616</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-06-06T11:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6502654#M496617</link>
      <description>&lt;P&gt;&amp;gt;So how could we do the error checking?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Take a look at these topics.&amp;nbsp; There are suggestions of using perl in several:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/Languages-and-Scripting/Help-with-perl-NET-ftp-script/m-p/6491006"&gt;http://h30499.www3.hp.com/t5/Languages-and-Scripting/Help-with-perl-NET-ftp-script/m-p/6491006&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/System-Administration/Check-return-code-via-FTP/td-p/3190761"&gt;http://h30499.www3.hp.com/t5/System-Administration/Check-return-code-via-FTP/td-p/3190761&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/System-Administration/FTP-and-error-codes/td-p/3998227"&gt;http://h30499.www3.hp.com/t5/System-Administration/FTP-and-error-codes/td-p/3998227&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/General/ftp-error-trapping/td-p/2775401"&gt;http://h30499.www3.hp.com/t5/General/ftp-error-trapping/td-p/2775401&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/General/FTP-Errors/td-p/2782685"&gt;http://h30499.www3.hp.com/t5/General/FTP-Errors/td-p/2782685&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/System-Administration/ftp-checking/td-p/4230997"&gt;http://h30499.www3.hp.com/t5/System-Administration/ftp-checking/td-p/4230997&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/General/FTP-Error-trapping/td-p/3572325"&gt;http://h30499.www3.hp.com/t5/General/FTP-Error-trapping/td-p/3572325&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="https://community.hpe.com/t5/System-Administration/FTP-Transfer-Checking/td-p/3113974"&gt;http://h30499.www3.hp.com/t5/System-Administration/FTP-Transfer-Checking/td-p/3113974&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;gt;for every 15 min in a day, for the week &amp;amp; year&lt;/P&gt;&lt;P&gt;&amp;gt;*/15,*,*,* * * * * /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the linux way of doing things.&amp;nbsp; For HP-UX, you need:&lt;/P&gt;&lt;P&gt;0,15,30,45 * * * * /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jun 2014 10:18:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6502654#M496617</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-06-07T10:18:26Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6502664#M496619</link>
      <description>&lt;P&gt;&amp;gt;for every 15 min in a day, for the week &amp;amp; year&lt;/P&gt;&lt;P&gt;&amp;gt;*/15,*,*,* * * * * /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the linux way of doing things.&amp;nbsp; For HP-UX, you need:&lt;/P&gt;&lt;P&gt;0,15,30,45 * * * * /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh&lt;/P&gt;</description>
      <pubDate>Sat, 07 Jun 2014 10:28:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6502664#M496619</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-06-07T10:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6504612#M496620</link>
      <description>Hello Dennis sir,&lt;BR /&gt;&lt;BR /&gt;I am getting the mail as below.Also there is nothing found in the cron log.&lt;BR /&gt;Date: Tue, 10 Jun 2014 09:30:00 +0530 (IST)&lt;BR /&gt;From: root@eccdevvg.infodartsap.com&lt;BR /&gt;Message-Id: &amp;lt;201406100400.s5A400n3005435@eccdevvg.infodartsap.com&amp;gt;&lt;BR /&gt;Subject: cron&lt;BR /&gt;&lt;BR /&gt;sh: /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh: not found.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;*************************************************&lt;BR /&gt;Cron: The previous message is the standard output&lt;BR /&gt;and standard error of one of your crontab commands:&lt;BR /&gt;&lt;BR /&gt;/usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh&lt;BR /&gt;&lt;BR /&gt;Please suggest me on this.&lt;BR /&gt;&lt;BR /&gt;Thanks &amp;amp; regards,&lt;BR /&gt;Vishal</description>
      <pubDate>Tue, 10 Jun 2014 04:02:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6504612#M496620</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-06-10T04:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6504640#M496621</link>
      <description>&lt;P&gt;&amp;gt;sh: /usr/sap/RDV/SYS/global/ftp/RMPA/ftpcptest.sh: not found.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Well, is that the path to your script?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jun 2014 05:24:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6504640#M496621</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2014-06-10T05:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Need ftp script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6504646#M496622</link>
      <description>Yes sir ,the path is same.However i have to manually execute the script.&lt;BR /&gt;&lt;BR /&gt;Thanks ,&lt;BR /&gt;VIshal</description>
      <pubDate>Tue, 10 Jun 2014 05:30:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-script/m-p/6504646#M496622</guid>
      <dc:creator>Vishal_1980</dc:creator>
      <dc:date>2014-06-10T05:30:56Z</dc:date>
    </item>
  </channel>
</rss>

