<?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 how do I automate kermit file transfer in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700417#M57739</link>
    <description>Dear friends,&lt;BR /&gt;&lt;BR /&gt;I am able to do interactive file tranfer between two HP-UX systems using modem dialup.&lt;BR /&gt;The way I do is&lt;BR /&gt;1. kermit -l /dev/ttyd1p0 -m motorola-fastalk&lt;BR /&gt;2. kermit&amp;gt;set speed 9600&lt;BR /&gt;   kermit&amp;gt;set modem flow-controls xon/xoff&lt;BR /&gt;   kermit&amp;gt;dial &lt;TEL-NUMBER&gt;&lt;BR /&gt;   &lt;BR /&gt;3. press enter and I get login prompt of remote system.. login with user id and password&lt;BR /&gt;&lt;BR /&gt;4. Ctrl+\ and c to get back to kermit prompt&lt;BR /&gt;5. send filename&lt;BR /&gt;once file transfer is finished, it comes back to kermit prompt&lt;BR /&gt;6. exit&lt;BR /&gt;&lt;BR /&gt;How can I put these in a script.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Manju&lt;/TEL-NUMBER&gt;</description>
    <pubDate>Tue, 09 Apr 2002 23:32:31 GMT</pubDate>
    <dc:creator>Manju Kampli</dc:creator>
    <dc:date>2002-04-09T23:32:31Z</dc:date>
    <item>
      <title>how do I automate kermit file transfer</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700417#M57739</link>
      <description>Dear friends,&lt;BR /&gt;&lt;BR /&gt;I am able to do interactive file tranfer between two HP-UX systems using modem dialup.&lt;BR /&gt;The way I do is&lt;BR /&gt;1. kermit -l /dev/ttyd1p0 -m motorola-fastalk&lt;BR /&gt;2. kermit&amp;gt;set speed 9600&lt;BR /&gt;   kermit&amp;gt;set modem flow-controls xon/xoff&lt;BR /&gt;   kermit&amp;gt;dial &lt;TEL-NUMBER&gt;&lt;BR /&gt;   &lt;BR /&gt;3. press enter and I get login prompt of remote system.. login with user id and password&lt;BR /&gt;&lt;BR /&gt;4. Ctrl+\ and c to get back to kermit prompt&lt;BR /&gt;5. send filename&lt;BR /&gt;once file transfer is finished, it comes back to kermit prompt&lt;BR /&gt;6. exit&lt;BR /&gt;&lt;BR /&gt;How can I put these in a script.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Manju&lt;/TEL-NUMBER&gt;</description>
      <pubDate>Tue, 09 Apr 2002 23:32:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700417#M57739</guid>
      <dc:creator>Manju Kampli</dc:creator>
      <dc:date>2002-04-09T23:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: how do I automate kermit file transfer</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700418#M57740</link>
      <description>I think it would go something like this:&lt;BR /&gt;&lt;BR /&gt;(sleep 5&lt;BR /&gt;echo "\r"&lt;BR /&gt;sleep 1&lt;BR /&gt;echo "set speed 9600\r"&lt;BR /&gt;sleep 1&lt;BR /&gt;echo "set modem flow-controls xon/xoff\r"&lt;BR /&gt;sleep 3&lt;BR /&gt;echo "dial &lt;TEL-NUMBER&gt;&lt;/TEL-NUMBER&gt;sleep 20&lt;BR /&gt;echo "\r"&lt;BR /&gt;sleep 5&lt;BR /&gt;echo "userid\r"&lt;BR /&gt;sleep 2&lt;BR /&gt;echo "password\r"&lt;BR /&gt;sleep 1&lt;BR /&gt;echo "\r"&lt;BR /&gt;echo "\r") |kermit -l /dev/ttyd1p0 -m motorola-fastalk   &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You may not need the \r's and you will have to figure out how to send the ctrl +\ c.  Seems like there is a way to send any character by calling its ascii number but I don't remember it.&lt;BR /&gt;&lt;BR /&gt;Ron</description>
      <pubDate>Wed, 10 Apr 2002 00:50:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700418#M57740</guid>
      <dc:creator>Ron Kinner</dc:creator>
      <dc:date>2002-04-10T00:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: how do I automate kermit file transfer</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700419#M57741</link>
      <description>Have you tried using the command-file option of kermit? Put the commands into a command-file and then invoke&lt;BR /&gt;kermit &lt;COMMAND-FILE&gt; -l /dev/ttyd1p0 -m motorola-fastalk  &lt;BR /&gt;&lt;BR /&gt;From the man page of kermit:&lt;BR /&gt;kermit [ filename ] [- x  arg [- x  arg ]...[- yyy ]...]]    &lt;BR /&gt;where:                                                            &lt;BR /&gt;filename is the name of a command file to execute...    &lt;BR /&gt;&lt;/COMMAND-FILE&gt;</description>
      <pubDate>Wed, 10 Apr 2002 01:09:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-i-automate-kermit-file-transfer/m-p/2700419#M57741</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2002-04-10T01:09:02Z</dc:date>
    </item>
  </channel>
</rss>

