<?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: Useful bash oneliner: List Server IP Addresses</title>
	<atom:link href="http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/</link>
	<description>The random things that spew forth from my brain...</description>
	<lastBuildDate>Fri, 25 Jan 2013 23:59:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta2-24222</generator>
	<item>
		<title>By: Gowtham</title>
		<link>http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/comment-page-1/#comment-7924</link>
		<dc:creator>Gowtham</dc:creator>
		<pubDate>Mon, 20 Oct 2008 10:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/#comment-7924</guid>
		<description><![CDATA[Here&#039;s one more (worked on CentOS/Fedora/RedHat-like distros): 
 
/sbin/ifconfig [OPTIONAL_DEVICE_NAME] &#124; grep &quot;Bcast&quot; &#124; awk -F &#039; &#039; &#039;{print $2}&#039; &#124; awk -F &#039;:&#039; &#039;{print $2}&#039; 
 
-g ]]></description>
		<content:encoded><![CDATA[<p>Here&#039;s one more (worked on CentOS/Fedora/RedHat-like distros):</p>
<p>/sbin/ifconfig [OPTIONAL_DEVICE_NAME] | grep &quot;Bcast&quot; | awk -F &#039; &#039; &#039;{print $2}&#039; | awk -F &#039;:&#039; &#039;{print $2}&#039;</p>
<p>-g </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: apokalyptik</title>
		<link>http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/comment-page-1/#comment-7206</link>
		<dc:creator>apokalyptik</dc:creator>
		<pubDate>Wed, 10 Oct 2007 20:52:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/#comment-7206</guid>
		<description><![CDATA[This is what I love about the *nix way of life. there&#039;s always so many ways of doing things.  What differentiates the men from the boys (as it were) is not how something gets done but that something gets done. :D ]]></description>
		<content:encoded><![CDATA[<p>This is what I love about the *nix way of life. there&#039;s always so many ways of doing things.  What differentiates the men from the boys (as it were) is not how something gets done but that something gets done. <img src='http://blog.apokalyptik.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph Scott</title>
		<link>http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/comment-page-1/#comment-7205</link>
		<dc:creator>Joseph Scott</dc:creator>
		<pubDate>Wed, 10 Oct 2007 19:50:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/#comment-7205</guid>
		<description><![CDATA[Here&#039;s a FreeBSD version: 
 
 /sbin/ifconfig -a &#124; /usr/bin/grep netmask &#124; /usr/bin/awk &#039;{print $2}&#039; ]]></description>
		<content:encoded><![CDATA[<p>Here&#039;s a FreeBSD version: </p>
<p> /sbin/ifconfig -a | /usr/bin/grep netmask | /usr/bin/awk &#039;{print $2}&#039; </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: apokalyptik</title>
		<link>http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/comment-page-1/#comment-7204</link>
		<dc:creator>apokalyptik</dc:creator>
		<pubDate>Wed, 10 Oct 2007 15:44:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/#comment-7204</guid>
		<description><![CDATA[indeed! thanks! ]]></description>
		<content:encoded><![CDATA[<p>indeed! thanks! </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Byers</title>
		<link>http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/comment-page-1/#comment-7203</link>
		<dc:creator>James Byers</dc:creator>
		<pubDate>Wed, 10 Oct 2007 14:23:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.apokalyptik.com/2007/10/10/useful-bash-oneliner-list-server-ip-addresses/#comment-7203</guid>
		<description><![CDATA[Looks like &quot;done&quot; turned into &quot;one&quot;.  I needed the same one-liner a while back, based it on ip: 
 
/sbin/ip addr list &#124; sed -n &#039;s/inet (.*)/.*/1,/p&#039; &#124; xargs &#124; sed &#039;s/,$//&#039; 
 
Amazing it takes stuff like this to get a list of IPs. ]]></description>
		<content:encoded><![CDATA[<p>Looks like &quot;done&quot; turned into &quot;one&quot;.  I needed the same one-liner a while back, based it on ip: </p>
<p>/sbin/ip addr list | sed -n &#039;s/inet (.*)/.*/1,/p&#039; | xargs | sed &#039;s/,$//&#039; </p>
<p>Amazing it takes stuff like this to get a list of IPs. </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching using memcached
Object Caching 560/562 objects using memcached

 Served from: blog.apokalyptik.com @ 2013-05-19 19:29:03 by W3 Total Cache -->