<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Bash socket programming with /dev/tcp</title>
	<atom:link href="http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/</link>
	<description>Your blog is probably better than mine.</description>
	<lastBuildDate>Wed, 16 May 2012 23:39:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: kizmiaz</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-159225</link>
		<dc:creator>kizmiaz</dc:creator>
		<pubDate>Thu, 08 Dec 2011 18:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-159225</guid>
		<description>Lainoox: Thanks for mentioning how to close the handle ! It was exactly the missing piece for me to be able to use that ...</description>
		<content:encoded><![CDATA[<p>Lainoox: Thanks for mentioning how to close the handle ! It was exactly the missing piece for me to be able to use that &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bash Socket Programming &#124; Lainoox</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-132647</link>
		<dc:creator>Bash Socket Programming &#124; Lainoox</dc:creator>
		<pubDate>Mon, 02 May 2011 22:45:41 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-132647</guid>
		<description>[...] I found that nifty example here. With some other great comments from other [...]</description>
		<content:encoded><![CDATA[<p>[...] I found that nifty example here. With some other great comments from other [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Syntax3rror</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-125994</link>
		<dc:creator>Syntax3rror</dc:creator>
		<pubDate>Mon, 21 Feb 2011 04:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-125994</guid>
		<description>Hi, I doing something that can send using POST method and set some parameters


In form html with be something like this:

  
  


There&#039;s possible to do that?


I also tried:
echo -e “POST / HTTP/1.1\n\nThis is the body of my POST”&gt;&amp;3

But i cant get any post body.


Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I doing something that can send using POST method and set some parameters</p>
<p>In form html with be something like this:</p>
<p>There&#8217;s possible to do that?</p>
<p>I also tried:<br />
echo -e “POST / HTTP/1.1\n\nThis is the body of my POST”&gt;&amp;3</p>
<p>But i cant get any post body.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jim</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-115033</link>
		<dc:creator>jim</dc:creator>
		<pubDate>Fri, 19 Nov 2010 17:16:33 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-115033</guid>
		<description>worked fantastic! I put Kudos on wikispeedia.org</description>
		<content:encoded><![CDATA[<p>worked fantastic! I put Kudos on wikispeedia.org</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-115031</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Fri, 19 Nov 2010 16:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-115031</guid>
		<description>Jim,

Yes, that is possible, but I would recommend using &quot;wget&quot; instead.

Example:
wget http://www.deldot.gov/traffic/data.ejs?type=vsl -O myfile.xml

When it&#039;s complete, the file &quot;myfile.xml&quot; will contain the XML data you want.

--Dave</description>
		<content:encoded><![CDATA[<p>Jim,</p>
<p>Yes, that is possible, but I would recommend using &#8220;wget&#8221; instead.</p>
<p>Example:<br />
wget <a href="http://www.deldot.gov/traffic/data.ejs?type=vsl" rel="nofollow">http://www.deldot.gov/traffic/data.ejs?type=vsl</a> -O myfile.xml</p>
<p>When it&#8217;s complete, the file &#8220;myfile.xml&#8221; will contain the XML data you want.</p>
<p>&#8211;Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jim</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-115030</link>
		<dc:creator>jim</dc:creator>
		<pubDate>Fri, 19 Nov 2010 16:35:18 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-115030</guid>
		<description>I am trying to retrieve this xml file using bash.
Is that possible?

http://www.deldot.gov/traffic/data.ejs?type=vsl</description>
		<content:encoded><![CDATA[<p>I am trying to retrieve this xml file using bash.<br />
Is that possible?</p>
<p><a href="http://www.deldot.gov/traffic/data.ejs?type=vsl" rel="nofollow">http://www.deldot.gov/traffic/data.ejs?type=vsl</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-102732</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 01 Jun 2010 13:40:46 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-102732</guid>
		<description>Andy,

Who are you trying to chat with? If you&#039;re trying to connect to an IRC or Jabber chat room, no, you can&#039;t use this code. But if you just want to talk to another Bash user, I would recommend netcat.

One of you just run this command:

nc -l -p 12345

And the other use this command:

nc theotherhost 12345

(replace &quot;theotherhost&quot; with the IP address or hostname of the other guy&#039;s computer)

Now every line you each type below the &quot;nc&quot; command will appear on the other guy&#039;s computer.

Have fun!</description>
		<content:encoded><![CDATA[<p>Andy,</p>
<p>Who are you trying to chat with? If you&#8217;re trying to connect to an IRC or Jabber chat room, no, you can&#8217;t use this code. But if you just want to talk to another Bash user, I would recommend netcat.</p>
<p>One of you just run this command:</p>
<p>nc -l -p 12345</p>
<p>And the other use this command:</p>
<p>nc theotherhost 12345</p>
<p>(replace &#8220;theotherhost&#8221; with the IP address or hostname of the other guy&#8217;s computer)</p>
<p>Now every line you each type below the &#8220;nc&#8221; command will appear on the other guy&#8217;s computer.</p>
<p>Have fun!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-102731</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 01 Jun 2010 13:35:51 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-102731</guid>
		<description>Hi can this code be used so it works like a simple chat in bash? if it can, can you please tell me how

Thanx.</description>
		<content:encoded><![CDATA[<p>Hi can this code be used so it works like a simple chat in bash? if it can, can you please tell me how</p>
<p>Thanx.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Menking</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-101724</link>
		<dc:creator>Ben Menking</dc:creator>
		<pubDate>Fri, 30 Apr 2010 02:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-101724</guid>
		<description>Re: Vladimir

Try using echo -n &quot;$msg_out&quot; &gt;&amp;3

echo without the &quot;-n&quot; will send a linefeed, which may be the extra character you are referencing.</description>
		<content:encoded><![CDATA[<p>Re: Vladimir</p>
<p>Try using echo -n &#8220;$msg_out&#8221; &gt;&amp;3</p>
<p>echo without the &#8220;-n&#8221; will send a linefeed, which may be the extra character you are referencing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Menking</title>
		<link>http://thesmithfam.org/blog/2006/05/23/bash-socket-programming-with-devtcp-2/comment-page-1/#comment-101723</link>
		<dc:creator>Ben Menking</dc:creator>
		<pubDate>Fri, 30 Apr 2010 02:03:01 +0000</pubDate>
		<guid isPermaLink="false">http://thesmithfam.org/blog/?p=21#comment-101723</guid>
		<description>Muhaha!  Just what I needed.

Was looking for a way to send a message to a web server from a Solaris jumpstart network unattended install (no wget or nc :-(

By the way, using this with ksh (no bash either).

Thanks!  (Now I must go build my empire and rule the world!)</description>
		<content:encoded><![CDATA[<p>Muhaha!  Just what I needed.</p>
<p>Was looking for a way to send a message to a web server from a Solaris jumpstart network unattended install (no wget or nc :-(</p>
<p>By the way, using this with ksh (no bash either).</p>
<p>Thanks!  (Now I must go build my empire and rule the world!)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

