<?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: Find a File by Name in UNIX, Solaris, or Linux</title>
	<atom:link href="http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Thu, 09 Feb 2012 21:01:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rani Sahoo</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-43889</link>
		<dc:creator>Rani Sahoo</dc:creator>
		<pubDate>Fri, 12 Nov 2010 09:27:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-43889</guid>
		<description>I can use locate filename to get the file with path.</description>
		<content:encoded><![CDATA[<p>I can use locate filename to get the file with path.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Goldcd</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-40248</link>
		<dc:creator>Goldcd</dc:creator>
		<pubDate>Tue, 29 Jun 2010 15:31:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-40248</guid>
		<description>Try
find / -name filename.txt -print 2&gt;/dev/null</description>
		<content:encoded><![CDATA[<p>Try<br />
find / -name filename.txt -print 2&gt;/dev/null</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srikantakumar</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-40033</link>
		<dc:creator>Srikantakumar</dc:creator>
		<pubDate>Tue, 22 Jun 2010 09:03:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-40033</guid>
		<description>when I am excuting the below command, getting the file name with ./ prefix before file name which i don&#039;t want (like test2 only not ./test2). any suggestion....

$ find -name &quot;test*&quot; -type f -print
./test2
./test3
./test1
</description>
		<content:encoded><![CDATA[<p>when I am excuting the below command, getting the file name with ./ prefix before file name which i don&#8217;t want (like test2 only not ./test2). any suggestion&#8230;.</p>
<p>$ find -name &#8220;test*&#8221; -type f -print<br />
./test2<br />
./test3<br />
./test1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse F.</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-26847</link>
		<dc:creator>Jesse F.</dc:creator>
		<pubDate>Thu, 08 Jan 2009 05:09:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-26847</guid>
		<description>His problem is is that he doesn&#039;t have permissions to view a lot of the files &#039;find&#039; uses.  Here&#039;s a few options:
If you don&#039;t have root permission, then you can supress error messages like so:        &#039;find -ignore_readdir_race /parent/path/here -name file_name.txt&#039;
Or if you can get permission, then:       &#039;sudo find /parent/path/here -name file_name.txt&#039;

yay!</description>
		<content:encoded><![CDATA[<p>His problem is is that he doesn&#8217;t have permissions to view a lot of the files &#8216;find&#8217; uses.  Here&#8217;s a few options:<br />
If you don&#8217;t have root permission, then you can supress error messages like so:        &#8216;find -ignore_readdir_race /parent/path/here -name file_name.txt&#8217;<br />
Or if you can get permission, then:       &#8217;sudo find /parent/path/here -name file_name.txt&#8217;</p>
<p>yay!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: venkata sudheer</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-25164</link>
		<dc:creator>venkata sudheer</dc:creator>
		<pubDate>Mon, 17 Nov 2008 14:17:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-25164</guid>
		<description>try this # find  -name  -print</description>
		<content:encoded><![CDATA[<p>try this # find  -name  -print</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Quinn McHenry</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-24357</link>
		<dc:creator>Quinn McHenry</dc:creator>
		<pubDate>Wed, 22 Oct 2008 19:30:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-24357</guid>
		<description>Yeah, totally.  Normal output goes to &quot;standard output&quot; which can be redirected with normal measures.  It&#039;s actually a nice thing that those messages are sent to &quot;standard error&quot; so you can redirect those but keep the more interesting responses.

find / -name something   2&gt;  /dev/null</description>
		<content:encoded><![CDATA[<p>Yeah, totally.  Normal output goes to &#8220;standard output&#8221; which can be redirected with normal measures.  It&#8217;s actually a nice thing that those messages are sent to &#8220;standard error&#8221; so you can redirect those but keep the more interesting responses.</p>
<p>find / -name something   2&gt;  /dev/null</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: snarfel</title>
		<link>http://www.tech-recipes.com/rx/21/find-a-file-by-name-in-unixsolarislinux/comment-page-1/#comment-24356</link>
		<dc:creator>snarfel</dc:creator>
		<pubDate>Wed, 22 Oct 2008 19:22:00 +0000</pubDate>
		<guid isPermaLink="false">guid-fix-me!#comment-24356</guid>
		<description>so, i get a bunch of &quot;Permission Denied&quot; notices for directories that my current user account can&#039;t access. is there a way to suppress these? </description>
		<content:encoded><![CDATA[<p>so, i get a bunch of &#8220;Permission Denied&#8221; notices for directories that my current user account can&#8217;t access. is there a way to suppress these?</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 (User agent is rejected)
Database Caching 2/14 queries in 0.920 seconds using memcached
Object Caching 365/369 objects using memcached

Served from: www.tech-recipes.com @ 2012-02-10 04:32:17 -->
