<div>If I use find . t hen I wont get the full path in the output it provides.</div>
<div> </div>
<div>If I do a find in the home folder. </div>
<div> </div>
<div>If I do find . -name a.txt -print I see</div>
<div>./a/b/c/d/a.txt<br></div>
<div>If I do f $(pwd) -name a.txt -print</div>
<div>/home/coolguy/a/b/c/d/a.txt</div>
<div> </div>
<div>See that /home/coolguy, it is important. for me.</div>
<div> </div>
<div>-Narahari<br></div>
<div class="gmail_quote">On Mon, Aug 1, 2011 at 8:44 AM, John Pilman <span dir="ltr">&lt;<a href="mailto:jcpilman@gmail.com">jcpilman@gmail.com</a>&gt;</span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">Oops, I left out the maxdepth specification:<br><br>alias f=&#39;find . -maxdepth 1 -type f -name&#39;<br>

<div>
<div></div>
<div class="h5"><br>On Mon, Aug 1, 2011 at 8:43 AM, John Pilman &lt;<a href="mailto:jcpilman@gmail.com">jcpilman@gmail.com</a>&gt; wrote:<br>&gt; I usually avoid re-writing the common commands. Instead I pick a<br>&gt; similar name.  In this case it would be &#39;f&#39;.<br>
&gt;<br>&gt; alias f=&#39;find . -maxdepth -type f -name&#39;<br>&gt;<br>&gt; now<br>&gt; f &quot;whatever&quot;<br>&gt; will only search the pwd.  This may not be exactly what you need, but<br>&gt; maybe it gets you a step closer.<br>
&gt;<br>&gt; ...John<br>&gt;<br>&gt; On Sun, Jul 31, 2011 at 11:52 PM, David Tomaschik<br>&gt; &lt;<a href="mailto:david@systemoverlord.com">david@systemoverlord.com</a>&gt; wrote:<br>&gt;&gt; On 07/31/2011 10:18 PM, Narahari &#39;n&#39; Savitha wrote:<br>
&gt;&gt;&gt; Friends:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; I use find command a lot these days and each time I have to type find<br>&gt;&gt;&gt; $(pwd) -name &quot;whatever&quot; -print<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; I want to just  type find . -name &quot;whatever&quot; -print and it should do<br>
&gt;&gt;&gt; find $(pwd).  Any idea how to overwrite the find function.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; -Narahari<br>&gt;&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; Why aren&#39;t you doing find . -name &quot;whatever&quot;?  find . and find $(pwd)<br>
&gt;&gt; are equivalent, as . means the current working directory.<br>&gt;&gt;<br>&gt;&gt; David<br>&gt;&gt; _______________________________________________<br>&gt;&gt; Ale mailing list<br>&gt;&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>
&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>&gt;&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>&gt;&gt; <a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br>
&gt;&gt;<br>&gt;<br><br>_______________________________________________<br>Ale mailing list<br><a href="mailto:Ale@ale.org">Ale@ale.org</a><br><a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br><a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/listinfo</a><br></div></div></blockquote></div><br>