<?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: ftp muntiple files using scripts in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971249#M927822</link>
    <description>Just a note.&lt;BR /&gt;&lt;BR /&gt;Of course, all of these methods are quite insecure.  The script requires a password to be hard coded into a script.&lt;BR /&gt;&lt;BR /&gt;Worse yet, ftp servers receive/send said password in clear text.  The dangers of sending important passwords this way are obvious.&lt;BR /&gt;&lt;BR /&gt;Thanks for the points sir, I would like to make a recommendation.&lt;BR /&gt;&lt;BR /&gt;Secure shell.  You can install it, and then exchange public keys, and use the a sftp or scp in a script to do this with secure data exchange and no hardcoded passwords in scripts.&lt;BR /&gt;&lt;BR /&gt;Link to the software, instruction doc attached.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Secure shell&lt;BR /&gt;&lt;A href="http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA" target="_blank"&gt;http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Tue, 13 May 2003 03:09:45 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2003-05-13T03:09:45Z</dc:date>
    <item>
      <title>ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971242#M927815</link>
      <description>How do I ftp multiple files to another server using scripts ?&lt;BR /&gt;&lt;BR /&gt;e.g. mput *.txt&lt;BR /&gt;&lt;BR /&gt;Scripts would use the existing userid and password and "force" transfer of all files without prompt.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot</description>
      <pubDate>Tue, 13 May 2003 01:42:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971242#M927815</guid>
      <dc:creator>Thin Lui Cheat</dc:creator>
      <dc:date>2003-05-13T01:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971243#M927816</link>
      <description>uhm !!script.I don't have it.But if you use ftp -i it will disable the ftp interactive part.&lt;BR /&gt;&lt;BR /&gt;I try to dig my old stuff and check whether the script is there or not.WIll posted it when have it.&lt;BR /&gt;&lt;BR /&gt;hope this will give some insight.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;mB</description>
      <pubDate>Tue, 13 May 2003 01:48:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971243#M927816</guid>
      <dc:creator>malay boy</dc:creator>
      <dc:date>2003-05-13T01:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971244#M927817</link>
      <description>Here is a start, there will be no prompts.&lt;BR /&gt;&lt;BR /&gt;ftp -n &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;open &lt;HOSTNAME&gt; &lt;BR /&gt;user &lt;USER&gt; &lt;PASSWORD&gt; &lt;BR /&gt;get .... &lt;BR /&gt;mput... &lt;BR /&gt;bye &lt;BR /&gt;EOF &lt;BR /&gt;&lt;BR /&gt;A few threads that deal with this.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xe0830559ff7cd4118fef0090279cd0f9,00.html" target="_blank"&gt;http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0xe0830559ff7cd4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x00517e990647d4118fee0090279cd0f9,00.html" target="_blank"&gt;http://my1.itrc.hp.com/cm/QuestionAnswer/1,1150,0x00517e990647d4118fee0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x82dff841489fd4118fef0090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x82dff841489fd4118fef0090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You really didn't need to wait for an answer, you could have found it with a search.&lt;BR /&gt;&lt;BR /&gt;If the answer was useful, please assign points.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;&lt;/PASSWORD&gt;&lt;/USER&gt;&lt;/HOSTNAME&gt;</description>
      <pubDate>Tue, 13 May 2003 01:48:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971244#M927817</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-05-13T01:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971245#M927818</link>
      <description>&lt;BR /&gt;This script from Mike should help:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x2dafa2db8513d6118ff40090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x2dafa2db8513d6118ff40090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Michael</description>
      <pubDate>Tue, 13 May 2003 01:54:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971245#M927818</guid>
      <dc:creator>Michael Tully</dc:creator>
      <dc:date>2003-05-13T01:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971246#M927819</link>
      <description>well...the master have replied (SEP and Michael).I guest my script no need anymore.&lt;BR /&gt;&lt;BR /&gt;Still learning,&lt;BR /&gt;mB</description>
      <pubDate>Tue, 13 May 2003 01:57:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971246#M927819</guid>
      <dc:creator>malay boy</dc:creator>
      <dc:date>2003-05-13T01:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971247#M927820</link>
      <description>hi guys,&lt;BR /&gt;&lt;BR /&gt;thanks for the fast reply. thats a lot of information here. I managed to test out a script and it works.&lt;BR /&gt;&lt;BR /&gt;cheers</description>
      <pubDate>Tue, 13 May 2003 02:17:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971247#M927820</guid>
      <dc:creator>Thin Lui Cheat</dc:creator>
      <dc:date>2003-05-13T02:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971248#M927821</link>
      <description>&lt;BR /&gt;&lt;BR /&gt;ftp -n &amp;lt;&lt;EOF&gt;&lt;/EOF&gt;open 172.16.1.233&lt;BR /&gt;user root &lt;PASSWORD&gt;&lt;BR /&gt;prompt no&lt;BR /&gt;cd /tmp/b&lt;BR /&gt;mput *.a&lt;BR /&gt;bye&lt;BR /&gt;EOF&lt;BR /&gt;&lt;/PASSWORD&gt;</description>
      <pubDate>Tue, 13 May 2003 02:23:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971248#M927821</guid>
      <dc:creator>T G Manikandan</dc:creator>
      <dc:date>2003-05-13T02:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: ftp muntiple files using scripts</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971249#M927822</link>
      <description>Just a note.&lt;BR /&gt;&lt;BR /&gt;Of course, all of these methods are quite insecure.  The script requires a password to be hard coded into a script.&lt;BR /&gt;&lt;BR /&gt;Worse yet, ftp servers receive/send said password in clear text.  The dangers of sending important passwords this way are obvious.&lt;BR /&gt;&lt;BR /&gt;Thanks for the points sir, I would like to make a recommendation.&lt;BR /&gt;&lt;BR /&gt;Secure shell.  You can install it, and then exchange public keys, and use the a sftp or scp in a script to do this with secure data exchange and no hardcoded passwords in scripts.&lt;BR /&gt;&lt;BR /&gt;Link to the software, instruction doc attached.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Secure shell&lt;BR /&gt;&lt;A href="http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA" target="_blank"&gt;http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=T1471AA&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Tue, 13 May 2003 03:09:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-muntiple-files-using-scripts/m-p/2971249#M927822</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-05-13T03:09:45Z</dc:date>
    </item>
  </channel>
</rss>

