<?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: How to find your public IP address with the Linux command line</title>
	<atom:link href="http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/</link>
	<description>Common questions, simple answers</description>
	<lastBuildDate>Sun, 22 Nov 2009 22:54:03 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sionide21</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/comment-page-1/#comment-10631</link>
		<dc:creator>Sionide21</dc:creator>
		<pubDate>Wed, 17 Jun 2009 00:23:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359#comment-10631</guid>
		<description>You can use
http://www.whatismyip.org/
To get just the ip in plaintext form.</description>
		<content:encoded><![CDATA[<p>You can use<br />
<a href="http://www.whatismyip.org/" rel="nofollow">http://www.whatismyip.org/</a><br />
To get just the ip in plaintext form.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sukrit D</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/comment-page-1/#comment-10634</link>
		<dc:creator>Sukrit D</dc:creator>
		<pubDate>Thu, 04 Jun 2009 06:22:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359#comment-10634</guid>
		<description>Sorry for the delayed reply. You can also use the following command to get your public IP:

&lt;code&gt;wget -q -O - checkip.dyndns.org&#124;sed -e &#039;s/.*Current IP Address: //&#039; -e &#039;s/&lt;.*$//&#039;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Sorry for the delayed reply. You can also use the following command to get your public IP:</p>
<p><code>wget -q -O - checkip.dyndns.org|sed -e 's/.*Current IP Address: //' -e 's/&lt;.*$//'</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/comment-page-1/#comment-10633</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 04 Jun 2009 05:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359#comment-10633</guid>
		<description>Using ifconfig works just as well, you&#039;ll still need to grep for the proper lines, and then possibly use sed to extract the actual IP address as this script does, and it doesn&#039;t rely on a specific site actually being up...</description>
		<content:encoded><![CDATA[<p>Using ifconfig works just as well, you&#8217;ll still need to grep for the proper lines, and then possibly use sed to extract the actual IP address as this script does, and it doesn&#8217;t rely on a specific site actually being up&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: spuffler</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/comment-page-1/#comment-10632</link>
		<dc:creator>spuffler</dc:creator>
		<pubDate>Thu, 04 Jun 2009 05:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359#comment-10632</guid>
		<description>... evidently, the author doesn&#039;t read our replies, otherwise, I&#039;d have had a successful execution of the script file, because I would have copied corrected text. ...</description>
		<content:encoded><![CDATA[<p>&#8230; evidently, the author doesn&#8217;t read our replies, otherwise, I&#8217;d have had a successful execution of the script file, because I would have copied corrected text. &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/comment-page-1/#comment-10630</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 01 Jun 2009 04:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359#comment-10630</guid>
		<description>When I copy-pasted the script into my own file, I saw that your quote marks don&#039;t match up.

... ‘[0-9.]+&#039;

I changed the first quote before the [ character to &#039;, making the final product read:

#!/bin/bash
curl -s myip.dk &#124; grep &#039;&quot;Box&quot;&#039; &#124; egrep -o &#039;[0-9.]+&#039;

By the way, I apologize for the slight messiness of this, but it&#039;s very difficult to quote a quote mark. ;)</description>
		<content:encoded><![CDATA[<p>When I copy-pasted the script into my own file, I saw that your quote marks don&#8217;t match up.</p>
<p>&#8230; ‘[0-9.]+&#8217;</p>
<p>I changed the first quote before the [ character to ', making the final product read:</p>
<p>#!/bin/bash<br />
curl -s myip.dk | grep '"Box"' | egrep -o '[0-9.]+&#8217;</p>
<p>By the way, I apologize for the slight messiness of this, but it&#8217;s very difficult to quote a quote mark. <img src='http://www.simplehelp.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Find your external IP from the CLI &#171; Linux &#38; Stuff</title>
		<link>http://www.simplehelp.net/2009/04/07/how-to-find-your-public-ip-address-with-the-linux-command-line/comment-page-1/#comment-10629</link>
		<dc:creator>Find your external IP from the CLI &#171; Linux &#38; Stuff</dc:creator>
		<pubDate>Sun, 10 May 2009 12:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2359#comment-10629</guid>
		<description>[...] 09/05/2009 in CLI &#124; Tags: CLI    Here&#8217;s how. [...]</description>
		<content:encoded><![CDATA[<p>[...] 09/05/2009 in CLI | Tags: CLI    Here&#8217;s how. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
