<?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>Komentarze do: File management in Linux</title>
	<atom:link href="http://polishlinux.org/console/file-management-in-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://polishlinux.org</link>
	<description>All About GNU/Linux and BSD - reviews, comparisons, articles</description>
	<lastBuildDate>Sun, 05 Feb 2012 02:17:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Autor: Roberto</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-120488</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Sat, 26 Apr 2008 02:19:35 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-120488</guid>
		<description>Is there a command for checking las modification date ?
or any simple way to check if a file has changed :P</description>
		<content:encoded><![CDATA[<p>Is there a command for checking las modification date ?<br />
or any simple way to check if a file has changed <img src='http://polishlinux.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Tim McCormack</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-65990</link>
		<dc:creator>Tim McCormack</dc:creator>
		<pubDate>Tue, 09 Oct 2007 01:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-65990</guid>
		<description>It might help to show the pwd command before the cd command, since the former is used in an example of the latter. :-)</description>
		<content:encoded><![CDATA[<p>It might help to show the pwd command before the cd command, since the former is used in an example of the latter. <img src='http://polishlinux.org/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Dr.U</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-56226</link>
		<dc:creator>Dr.U</dc:creator>
		<pubDate>Thu, 13 Sep 2007 06:51:34 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-56226</guid>
		<description>Thanks for the explanation of the &quot;ln&quot; utility! Simple and to the point --&gt; For the first time even &lt;strong&gt;I&lt;/strong&gt;&lt;strong&gt; understand its use and the difference between &quot;hard links&quot; and &quot;symbolic links&quot;.&lt;/strong&gt;</description>
		<content:encoded><![CDATA[<p>Thanks for the explanation of the &#8222;ln&#8221; utility! Simple and to the point &#8211;&gt; For the first time even <strong>I</strong><strong> understand its use and the difference between &#8222;hard links&#8221; and &#8222;symbolic links&#8221;.</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Taco Buitenhuis</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-56095</link>
		<dc:creator>Taco Buitenhuis</dc:creator>
		<pubDate>Wed, 12 Sep 2007 21:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-56095</guid>
		<description>oops. that should of course be

-name &#039;*.cpp&#039;</description>
		<content:encoded><![CDATA[<p>oops. that should of course be</p>
<p>-name &#8216;*.cpp&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Taco Buitenhuis</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-56094</link>
		<dc:creator>Taco Buitenhuis</dc:creator>
		<pubDate>Wed, 12 Sep 2007 21:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-56094</guid>
		<description>This should do it:

find . -name &#039;*.c&#039; -printf &#039;%T@ %t %h%p\n&#039; &#124; sort -n

Use sort -rn to reverse the order.

(The first number on every line is the modification time in a format sort will understand)</description>
		<content:encoded><![CDATA[<p>This should do it:</p>
<p>find . -name &#8216;*.c&#8217; -printf &#8216;%T@ %t %h%p\n&#8217; | sort -n</p>
<p>Use sort -rn to reverse the order.</p>
<p>(The first number on every line is the modification time in a format sort will understand)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: Taco Buitenhuis</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-56092</link>
		<dc:creator>Taco Buitenhuis</dc:creator>
		<pubDate>Wed, 12 Sep 2007 21:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-56092</guid>
		<description>Here&#039;s one of my favourite commands:

du -a --max-depth=1 &#124; sort -rn &#124; head -11

It displays the size of the current directory followed by the top ten biggest things (which may be subdirectories) inside it.</description>
		<content:encoded><![CDATA[<p>Here&#8217;s one of my favourite commands:</p>
<p>du -a &#8211;max-depth=1 | sort -rn | head -11</p>
<p>It displays the size of the current directory followed by the top ten biggest things (which may be subdirectories) inside it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: adz</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-56091</link>
		<dc:creator>adz</dc:creator>
		<pubDate>Wed, 12 Sep 2007 20:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-56091</guid>
		<description>Try: ls -Rlt &#124; grep .*.cpp, if want to reverse output(latest first) use -r parameter.</description>
		<content:encoded><![CDATA[<p>Try: ls -Rlt | grep .*.cpp, if want to reverse output(latest first) use -r parameter.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Autor: sunny</title>
		<link>http://polishlinux.org/console/file-management-in-linux/#comment-56018</link>
		<dc:creator>sunny</dc:creator>
		<pubDate>Wed, 12 Sep 2007 11:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://polishlinux.org/console/file-management-in-linux/#comment-56018</guid>
		<description>what is command for listing out particular kind of files(for eg .cpp and .hpp) recursively according to the date of modification (earliest first and latest last) ????</description>
		<content:encoded><![CDATA[<p>what is command for listing out particular kind of files(for eg .cpp and .hpp) recursively according to the date of modification (earliest first and latest last) ????</p>
]]></content:encoded>
	</item>
</channel>
</rss>

