<?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: Utility like nc in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685048#M53901</link>
    <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Go to &lt;A href="http://www.software.hp.com" target="_blank"&gt;www.software.hp.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;choose public domain&lt;BR /&gt;&lt;BR /&gt;look at&lt;BR /&gt;&lt;BR /&gt;Netcat 1.10&lt;BR /&gt;===========          /\_/          / 0 0 Netcat is a simple Unix utility which reads and writes data  ====v====&lt;BR /&gt;across network connections, using TCP or UDP protocol.    \  W  /&lt;BR /&gt;It is designed to be a reliable "back-end" tool that can   |     |     _&lt;BR /&gt;be used directly or easily driven by other programs and    / ___ \    /&lt;BR /&gt;scripts.  At the same time, it is a feature-rich network  / /   \ \  |&lt;BR /&gt;debugging and exploration tool, since it can create almost (((-----)))-'&lt;BR /&gt;any kind of connection you would need and has several   /&lt;BR /&gt;interesting built-in capabilities.  Netcat, or "nc" as the (      ___&lt;BR /&gt;actual program is named, should have been supplied long ago  \__.=|___E&lt;BR /&gt;as another one of those cryptic but standard Unix tools.         /&lt;BR /&gt;&lt;BR /&gt;In the simplest usage, "nc host port" creates a TCP connection to the given&lt;BR /&gt;port on the given target host.  Your standard input is then sent to the host,&lt;BR /&gt;and anything that comes back across the connection is sent to your standard&lt;BR /&gt;output.  This continues indefinitely, until the network side of the connection&lt;BR /&gt;shuts down.  Note that this behavior is different from most other applications&lt;BR /&gt;which shut everything down and exit after an end-of-file on the standard input.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;          Steve Steel&lt;BR /&gt;</description>
    <pubDate>Mon, 18 Mar 2002 09:58:38 GMT</pubDate>
    <dc:creator>Steve Steel</dc:creator>
    <dc:date>2002-03-18T09:58:38Z</dc:date>
    <item>
      <title>Utility like nc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685046#M53899</link>
      <description>Hi Gurus,&lt;BR /&gt;&lt;BR /&gt;Do you know any utility like nc in BSD. Actually I want to take some output from one server's port &amp;amp; would like to store in variable.&lt;BR /&gt;&lt;BR /&gt;When I am giving telnet abc 28000 | grep ok then output is coming .&lt;BR /&gt;ok                                &lt;BR /&gt;Connection closed by foreign host.&lt;BR /&gt;&lt;BR /&gt;I want to get only ok value. I don't want "Connection closed by foreign host.". Is there any way or can I get any utility like nc ?&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Mar 2002 09:39:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685046#M53899</guid>
      <dc:creator>Joydeep_1</dc:creator>
      <dc:date>2002-03-18T09:39:38Z</dc:date>
    </item>
    <item>
      <title>Re: Utility like nc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685047#M53900</link>
      <description>c=`telnet abc 28000 | grep ok`&lt;BR /&gt;echo $c | awk '{print $1}' ??</description>
      <pubDate>Mon, 18 Mar 2002 09:58:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685047#M53900</guid>
      <dc:creator>Deepak Extross</dc:creator>
      <dc:date>2002-03-18T09:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Utility like nc</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685048#M53901</link>
      <description>Hi&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Go to &lt;A href="http://www.software.hp.com" target="_blank"&gt;www.software.hp.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;choose public domain&lt;BR /&gt;&lt;BR /&gt;look at&lt;BR /&gt;&lt;BR /&gt;Netcat 1.10&lt;BR /&gt;===========          /\_/          / 0 0 Netcat is a simple Unix utility which reads and writes data  ====v====&lt;BR /&gt;across network connections, using TCP or UDP protocol.    \  W  /&lt;BR /&gt;It is designed to be a reliable "back-end" tool that can   |     |     _&lt;BR /&gt;be used directly or easily driven by other programs and    / ___ \    /&lt;BR /&gt;scripts.  At the same time, it is a feature-rich network  / /   \ \  |&lt;BR /&gt;debugging and exploration tool, since it can create almost (((-----)))-'&lt;BR /&gt;any kind of connection you would need and has several   /&lt;BR /&gt;interesting built-in capabilities.  Netcat, or "nc" as the (      ___&lt;BR /&gt;actual program is named, should have been supplied long ago  \__.=|___E&lt;BR /&gt;as another one of those cryptic but standard Unix tools.         /&lt;BR /&gt;&lt;BR /&gt;In the simplest usage, "nc host port" creates a TCP connection to the given&lt;BR /&gt;port on the given target host.  Your standard input is then sent to the host,&lt;BR /&gt;and anything that comes back across the connection is sent to your standard&lt;BR /&gt;output.  This continues indefinitely, until the network side of the connection&lt;BR /&gt;shuts down.  Note that this behavior is different from most other applications&lt;BR /&gt;which shut everything down and exit after an end-of-file on the standard input.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;          Steve Steel&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Mar 2002 09:58:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/utility-like-nc/m-p/2685048#M53901</guid>
      <dc:creator>Steve Steel</dc:creator>
      <dc:date>2002-03-18T09:58:38Z</dc:date>
    </item>
  </channel>
</rss>

