<?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"
	>
<channel>
	<title>Comments on: Counting open files per user</title>
	<atom:link href="http://rackerhacker.com/2007/09/26/counting-open-files-per-user/feed/" rel="self" type="application/rss+xml" />
	<link>http://rackerhacker.com/2007/09/26/counting-open-files-per-user/</link>
	<description>Words of wisdom from a server administrator</description>
	<pubDate>Wed, 20 Aug 2008 16:21:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: brocknoland</title>
		<link>http://rackerhacker.com/2007/09/26/counting-open-files-per-user/#comment-71</link>
		<dc:creator>brocknoland</dc:creator>
		<pubDate>Tue, 16 Oct 2007 18:42:37 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/2007/09/26/counting-open-files-per-user/#comment-71</guid>
		<description>"I am not sure what the awk,sort, and wc commands are being used for."

Sorry, I meant more just using -c on great or counting the lines directly.</description>
		<content:encoded><![CDATA[<p>&#8220;I am not sure what the awk,sort, and wc commands are being used for.&#8221;</p>
<p>Sorry, I meant more just using -c on great or counting the lines directly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brocknoland</title>
		<link>http://rackerhacker.com/2007/09/26/counting-open-files-per-user/#comment-69</link>
		<dc:creator>brocknoland</dc:creator>
		<pubDate>Tue, 16 Oct 2007 18:24:53 +0000</pubDate>
		<guid isPermaLink="false">http://rackerhacker.com/2007/09/26/counting-open-files-per-user/#comment-69</guid>
		<description>&lt;code&gt;
lsof &#124; grep ' root ' &#124; awk '{print $NF}' &#124; sort &#124; wc -l
&lt;/code&gt;

I am not sure what the awk,sort, and wc commands are being used for.  Did you mean?

&lt;code&gt;
lsof &#124; grep ' root ' &#124; awk '{print $NF}' &#124; sort -u &#124; wc -l
&lt;/code&gt;

Also of use would be:

&lt;code&gt;
lsof -u username
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
lsof | grep ' root ' | awk '{print $NF}' | sort | wc -l<br />
</code></p>
<p>I am not sure what the awk,sort, and wc commands are being used for.  Did you mean?</p>
<p><code><br />
lsof | grep ' root ' | awk '{print $NF}' | sort -u | wc -l<br />
</code></p>
<p>Also of use would be:</p>
<p><code><br />
lsof -u username<br />
</code></p>
]]></content:encoded>
	</item>
</channel>
</rss>
