<?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: Viewing all users on a Linux system</title>
	<atom:link href="http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/</link>
	<description></description>
	<lastBuildDate>Sat, 19 May 2012 07:40:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Hire Skip</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7944</link>
		<dc:creator>Hire Skip</dc:creator>
		<pubDate>Wed, 28 Oct 2009 04:26:11 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7944</guid>
		<description>Excellent.  I&#039;ve been struggling with this so a big help. Thanks.</description>
		<content:encoded><![CDATA[<p>Excellent.  I&#8217;ve been struggling with this so a big help. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Huckins</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7310</link>
		<dc:creator>Samuel Huckins</dc:creator>
		<pubDate>Tue, 06 Oct 2009 00:46:25 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7310</guid>
		<description>@Jason Thanks for the improvements! I&#039;ve adjusted the function in the post accordingly, much more elegant.

I&#039;ve tried to purge the desire to needlessly cat things, but it has been stubborn :-)</description>
		<content:encoded><![CDATA[<p>@Jason Thanks for the improvements! I&#8217;ve adjusted the function in the post accordingly, much more elegant.</p>
<p>I&#8217;ve tried to purge the desire to needlessly cat things, but it has been stubborn <img src='http://dancingpenguinsoflight.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7295</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 05 Oct 2009 13:41:12 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7295</guid>
		<description>Nice idea. You can remove the cat, and grep pipes with awk by using something similar to:

awk -F&quot;:&quot; &#039;!/bin\/false/{ print &quot;username: &quot; $1 &quot;, uid: &quot; $3 &quot;, homedir: &quot; $6 }&#039; /etc/passwd</description>
		<content:encoded><![CDATA[<p>Nice idea. You can remove the cat, and grep pipes with awk by using something similar to:</p>
<p>awk -F&#8221;:&#8221; &#8216;!/bin\/false/{ print &#8220;username: &#8221; $1 &#8220;, uid: &#8221; $3 &#8220;, homedir: &#8221; $6 }&#8217; /etc/passwd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Huckins</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7285</link>
		<dc:creator>Samuel Huckins</dc:creator>
		<pubDate>Mon, 05 Oct 2009 02:18:32 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7285</guid>
		<description>@slinger LDAP and NIS already have tools to list their users readily though. Optimally, I&#039;ll re-write this function to pull all the possible sources with getent and parse them the same.</description>
		<content:encoded><![CDATA[<p>@slinger LDAP and NIS already have tools to list their users readily though. Optimally, I&#8217;ll re-write this function to pull all the possible sources with getent and parse them the same.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slinger</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7280</link>
		<dc:creator>slinger</dc:creator>
		<pubDate>Sun, 04 Oct 2009 23:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7280</guid>
		<description>/etc/passwd will only list the local users.  What about LDAP or NIS users?  The getent command is the only way to do that.</description>
		<content:encoded><![CDATA[<p>/etc/passwd will only list the local users.  What about LDAP or NIS users?  The getent command is the only way to do that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Huckins</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7279</link>
		<dc:creator>Samuel Huckins</dc:creator>
		<pubDate>Sun, 04 Oct 2009 23:04:29 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7279</guid>
		<description>@Niall I hadn&#039;t seen that command actually, very cool. Doesn&#039;t solve the problem though. This just provides easy access to all the locations users can be specified. You still need a utility to wrap these, parsing out their entries and displaying one unified view.

Version 2.0 of my function I suppose :-)</description>
		<content:encoded><![CDATA[<p>@Niall I hadn&#8217;t seen that command actually, very cool. Doesn&#8217;t solve the problem though. This just provides easy access to all the locations users can be specified. You still need a utility to wrap these, parsing out their entries and displaying one unified view.</p>
<p>Version 2.0 of my function I suppose <img src='http://dancingpenguinsoflight.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Niall</title>
		<link>http://dancingpenguinsoflight.com/2009/10/viewing-all-users-on-a-linux-system/comment-page-1/#comment-7278</link>
		<dc:creator>Niall</dc:creator>
		<pubDate>Sun, 04 Oct 2009 21:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1274#comment-7278</guid>
		<description>/etc/passwd isn&#039;t the only place to define users. getent(1) is probably a far safer/reliable mechanism for getting users.</description>
		<content:encoded><![CDATA[<p>/etc/passwd isn&#8217;t the only place to define users. getent(1) is probably a far safer/reliable mechanism for getting users.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

