<?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 list numeric file permissions on Linux</title>
	<atom:link href="http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/</link>
	<description>if you want to levitate youÂ´re not allowed to hesitate ;.)</description>
	<lastBuildDate>Thu, 22 Mar 2012 10:25:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: artemus</title>
		<link>http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/comment-page-1/#comment-43007</link>
		<dc:creator>artemus</dc:creator>
		<pubDate>Thu, 04 Aug 2011 21:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/#comment-43007</guid>
		<description>Any way to make the above do this recursively from, say, the current directory?

Thanks,

Scott</description>
		<content:encoded><![CDATA[<p>Any way to make the above do this recursively from, say, the current directory?</p>
<p>Thanks,</p>
<p>Scott</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Florin</title>
		<link>http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/comment-page-1/#comment-9702</link>
		<dc:creator>Florin</dc:creator>
		<pubDate>Tue, 20 Oct 2009 11:25:02 +0000</pubDate>
		<guid isPermaLink="false">http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/#comment-9702</guid>
		<description>Great! I was looking for a command to list permission in octal, of a file. Now i found it. Thanks Garry.</description>
		<content:encoded><![CDATA[<p>Great! I was looking for a command to list permission in octal, of a file. Now i found it. Thanks Garry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Titusz</title>
		<link>http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/comment-page-1/#comment-3277</link>
		<dc:creator>Titusz</dc:creator>
		<pubDate>Thu, 02 Apr 2009 21:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/#comment-3277</guid>
		<description>thanks Garry... that makes it much easier...</description>
		<content:encoded><![CDATA[<p>thanks Garry&#8230; that makes it much easier&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garry</title>
		<link>http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/comment-page-1/#comment-3272</link>
		<dc:creator>Garry</dc:creator>
		<pubDate>Thu, 02 Apr 2009 18:17:36 +0000</pubDate>
		<guid isPermaLink="false">http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/#comment-3272</guid>
		<description>While I&#039;m at it, there&#039;s a handy alias that will display the &quot;human readable&quot; permissions, the numeric permissions, the size in bytes (padded to 8 characters), and time of last modification (truncated at 19 characters), and the filename, including any provided path spec:

alias d=&#039;stat -c &quot;%A (%a) %8s %.19y  %n&quot; &#039;

You would use the command thus:

d Src/*

-rw-r--r-- (644)     3808 2009-03-27 17:12:34  Src/DaemonClient.cpp
-rw-r--r-- (644)     8898 2009-04-02 10:29:23  Src/DaemonObject.cpp
-rw-r--r-- (644)     4782 2009-03-31 11:39:12  Src/main.cpp

Hope someone finds that useful.</description>
		<content:encoded><![CDATA[<p>While I&#8217;m at it, there&#8217;s a handy alias that will display the &#8220;human readable&#8221; permissions, the numeric permissions, the size in bytes (padded to 8 characters), and time of last modification (truncated at 19 characters), and the filename, including any provided path spec:</p>
<p>alias d=&#8217;stat -c &#8220;%A (%a) %8s %.19y  %n&#8221; &#8216;</p>
<p>You would use the command thus:</p>
<p>d Src/*</p>
<p>-rw-r&#8211;r&#8211; (644)     3808 2009-03-27 17:12:34  Src/DaemonClient.cpp<br />
-rw-r&#8211;r&#8211; (644)     8898 2009-04-02 10:29:23  Src/DaemonObject.cpp<br />
-rw-r&#8211;r&#8211; (644)     4782 2009-03-31 11:39:12  Src/main.cpp</p>
<p>Hope someone finds that useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Garry</title>
		<link>http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/comment-page-1/#comment-3271</link>
		<dc:creator>Garry</dc:creator>
		<pubDate>Thu, 02 Apr 2009 17:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://titusz.org/how-to/how-to-list-numeric-file-permissions-on-linux/#comment-3271</guid>
		<description>You can use stat directly.

    stat -c &quot;%a  %n&quot; *

will output the octal file permissions and file name of all files in the current directory.

    stat -c &quot;%a  %n&quot; /home/mydir/source/*

will do the same for all files in /home/mydir/source/ (if you leave off the &quot;/*&quot; at the end, stat will just tell you that it&#039;s a directory).</description>
		<content:encoded><![CDATA[<p>You can use stat directly.</p>
<p>    stat -c &#8220;%a  %n&#8221; *</p>
<p>will output the octal file permissions and file name of all files in the current directory.</p>
<p>    stat -c &#8220;%a  %n&#8221; /home/mydir/source/*</p>
<p>will do the same for all files in /home/mydir/source/ (if you leave off the &#8220;/*&#8221; at the end, stat will just tell you that it&#8217;s a directory).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

