<?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: shell scripting in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655795#M102472</link>
    <description>If you want to use a browser to run an UNIX-command and shows it output, you will need Perl or PHP on the server in combination with Apache. Check &lt;A href="http://www.php.net" target="_blank"&gt;http://www.php.net&lt;/A&gt; for more information.</description>
    <pubDate>Mon, 24 Oct 2005 03:14:58 GMT</pubDate>
    <dc:creator>Kryno Bosman</dc:creator>
    <dc:date>2005-10-24T03:14:58Z</dc:date>
    <item>
      <title>shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655789#M102466</link>
      <description>Dear Sirs,&lt;BR /&gt;&lt;BR /&gt;I want to know how to execute a unix command through a browser ?&lt;BR /&gt;&lt;BR /&gt;For example: I want to open a browser and click on some link. The link should go to a unix box and execute a command ( say "bdf"). The output should be displayed in the browser itself.&lt;BR /&gt;&lt;BR /&gt;Please let me know the way how to do it alongwith actual code.&lt;BR /&gt;&lt;BR /&gt;Appreciate your help.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shiv&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Oct 2005 01:41:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655789#M102466</guid>
      <dc:creator>Shivkumar</dc:creator>
      <dc:date>2005-10-24T01:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655790#M102467</link>
      <description>Shiv, one possible way of doing this using cgi scripts. You can use Apache as your webserver and write cgi scripts, execute commands thro system("bdf") and store it in a file, display that..&lt;BR /&gt;&lt;BR /&gt;-Arun</description>
      <pubDate>Mon, 24 Oct 2005 01:47:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655790#M102467</guid>
      <dc:creator>Arunvijai_4</dc:creator>
      <dc:date>2005-10-24T01:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655791#M102468</link>
      <description>You can do this using CGI programs/scripts.&lt;BR /&gt;See this link for more information:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://httpd.apache.org/docs/2.0/howto/cgi.html" target="_blank"&gt;http://httpd.apache.org/docs/2.0/howto/cgi.html&lt;/A&gt;</description>
      <pubDate>Mon, 24 Oct 2005 01:51:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655791#M102468</guid>
      <dc:creator>Torsten.</dc:creator>
      <dc:date>2005-10-24T01:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655792#M102469</link>
      <description>You have to develope a terminal emulator with perl+cgi scripts or| php scripting and put into apache web server.&lt;BR /&gt;&lt;BR /&gt;On getting a command from user input, script will execute and send a result to command line.&lt;BR /&gt;&lt;BR /&gt;hth.</description>
      <pubDate>Mon, 24 Oct 2005 01:55:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655792#M102469</guid>
      <dc:creator>Muthukumar_5</dc:creator>
      <dc:date>2005-10-24T01:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655793#M102470</link>
      <description>Yes,&lt;BR /&gt;&lt;BR /&gt;You will need a combination of telnet plus some scripting which will write the output to your browser.&lt;BR /&gt;&lt;BR /&gt;CGI will be the best.</description>
      <pubDate>Mon, 24 Oct 2005 01:59:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655793#M102470</guid>
      <dc:creator>Vibhor Kumar Agarwal</dc:creator>
      <dc:date>2005-10-24T01:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655794#M102471</link>
      <description>You can also do this using PHP on top of Apache. &lt;A href="http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXWSAP4381" target="_blank"&gt;http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXWSAP4381&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;For example the following PHP script:&lt;BR /&gt;&lt;BR /&gt;    system("command");&lt;BR /&gt;?&amp;gt;&lt;BR /&gt;&lt;BR /&gt;will execute the command on the server. However in such a case since this comand will be executed with the web servers user rights (unless you configure it to run as root). So, you will not be able to run root commands.&lt;BR /&gt;&lt;BR /&gt;For a more complete solution for system administration try Webmin&lt;BR /&gt;&lt;BR /&gt;hth&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Oct 2005 02:26:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655794#M102471</guid>
      <dc:creator>Orhan Biyiklioglu</dc:creator>
      <dc:date>2005-10-24T02:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: shell scripting</title>
      <link>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655795#M102472</link>
      <description>If you want to use a browser to run an UNIX-command and shows it output, you will need Perl or PHP on the server in combination with Apache. Check &lt;A href="http://www.php.net" target="_blank"&gt;http://www.php.net&lt;/A&gt; for more information.</description>
      <pubDate>Mon, 24 Oct 2005 03:14:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/shell-scripting/m-p/3655795#M102472</guid>
      <dc:creator>Kryno Bosman</dc:creator>
      <dc:date>2005-10-24T03:14:58Z</dc:date>
    </item>
  </channel>
</rss>

