<?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: How to create Multiple commands from Shell script in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860460#M95991</link>
    <description>Hi Tony,&lt;BR /&gt;&lt;BR /&gt;One idea that struck me is to use at command. Use the same shell script but instead of running them together,  schedule them all together at the same time.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
    <pubDate>Mon, 09 Dec 2002 18:22:36 GMT</pubDate>
    <dc:creator>Sridhar Bhaskarla</dc:creator>
    <dc:date>2002-12-09T18:22:36Z</dc:date>
    <item>
      <title>How to create Multiple commands from Shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860457#M95988</link>
      <description>I need to create a script for a test that will simulate create multiple processes at the same time. In this case it would be the OpenView opcmsg command. I need to create several dozen opcmsg commands at the same time. &lt;BR /&gt;&lt;BR /&gt;Is there a way inside a shell script to create say 40 opcmsg's at the same time. &lt;BR /&gt;&lt;BR /&gt;Unfortunately all of the looping facilities inside a shell script do not create them fast enough.</description>
      <pubDate>Mon, 09 Dec 2002 18:12:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860457#M95988</guid>
      <dc:creator>Tony Williams</dc:creator>
      <dc:date>2002-12-09T18:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Multiple commands from Shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860458#M95989</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt; #!/bin/ksh &lt;BR /&gt;ftp -n &lt;HOSTNAME or="" ip=""&gt; &amp;lt;&amp;lt; FTP &lt;BR /&gt;user &lt;USERNAME&gt; &lt;PASSWD&gt; &lt;BR /&gt;bin &lt;BR /&gt;prompt &lt;BR /&gt;mput * &lt;BR /&gt;FTP &lt;BR /&gt;&lt;BR /&gt;-USA..&lt;/PASSWD&gt;&lt;/USERNAME&gt;&lt;/HOSTNAME&gt;</description>
      <pubDate>Mon, 09 Dec 2002 18:18:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860458#M95989</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2002-12-09T18:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Multiple commands from Shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860459#M95990</link>
      <description>Sorry wrong post..!!</description>
      <pubDate>Mon, 09 Dec 2002 18:19:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860459#M95990</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2002-12-09T18:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Multiple commands from Shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860460#M95991</link>
      <description>Hi Tony,&lt;BR /&gt;&lt;BR /&gt;One idea that struck me is to use at command. Use the same shell script but instead of running them together,  schedule them all together at the same time.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Mon, 09 Dec 2002 18:22:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860460#M95991</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-12-09T18:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Multiple commands from Shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860461#M95992</link>
      <description>When you loop through build a command that looks like this:&lt;BR /&gt;&lt;BR /&gt;opcmsg &amp;amp; opcmsg &amp;amp; opcmsg &amp;amp; ...&lt;BR /&gt;&lt;BR /&gt;I would try to stack 40 of these in one command line.  They should execute asynchronous.&lt;BR /&gt;&lt;BR /&gt;Tom</description>
      <pubDate>Mon, 09 Dec 2002 18:30:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860461#M95992</guid>
      <dc:creator>Tom Jackson</dc:creator>
      <dc:date>2002-12-09T18:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to create Multiple commands from Shell script</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860462#M95993</link>
      <description>Sorry,&lt;BR /&gt;&lt;BR /&gt;I think the expense of creating a new process and switch it to the CPU will always last too long, so you will not be able to "flood" messages with creating processes, that send omne message each.&lt;BR /&gt;&lt;BR /&gt;There has to be a lib and a header file and a documentation and may be with a twentyliner in C you will be able to create a single (or five) process(es) and call the message-call in a loop, which will be fast enough to simulate many messages.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Volker</description>
      <pubDate>Mon, 09 Dec 2002 18:58:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-to-create-multiple-commands-from-shell-script/m-p/2860462#M95993</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2002-12-09T18:58:31Z</dc:date>
    </item>
  </channel>
</rss>

