<p>I thought the goal was to ensure that the full path was listed. Using find like that only works if you specify the whole path in $DIR, whereas realpath will always return the full path. I use realpath quite a bit for other things which is why using it came to mind.</p>

<p>--<br>
Sent from my phone... a G2 running CM7 nightlies!</p>
<div class="gmail_quote">On May 27, 2011 1:59 PM, &quot;Geoffrey Myers&quot; &lt;<a href="mailto:lists@serioustechnology.com">lists@serioustechnology.com</a>&gt; wrote:<br type="attribution">&gt; I still don&#39;t understand what is wrong with a simple find:<br>
&gt; <br>&gt; find $DIR -print<br>&gt; <br>&gt; Clean, and easy.  No different the the OP&#39;s windows solution.<br>&gt; <br>&gt; James Sumners wrote:<br>&gt;&gt; Here&#39;s a bash script you can use without having to install any extra<br>
&gt;&gt; packages. Note that 1) it is slow and 2) you run it like so:<br>&gt;&gt; `listpath.sh .`<br>&gt;&gt; <br>&gt;&gt; #!/bin/bash<br>&gt;&gt; <br>&gt;&gt; IFS=$&#39;\n&#39;<br>&gt;&gt; <br>&gt;&gt; for f in $(find ${1} -type f); do<br>
&gt;&gt;     DIR=$(dirname $(readlink -f ${f}))<br>&gt;&gt;     NAME=$(basename ${f})<br>&gt;&gt; <br>&gt;&gt;     echo &quot;${DIR}/${NAME}&quot;<br>&gt;&gt; done<br>&gt;&gt; <br>&gt;&gt; On Fri, May 27, 2011 at 12:23 PM, Michael Trausch &lt;<a href="mailto:mike@trausch.us">mike@trausch.us</a>&gt; wrote:<br>
&gt;&gt;&gt; find . -print0 | xargs -0 realpath<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; You might have to install the realpath package.<br>&gt;&gt; <br>&gt;&gt; <br>&gt; <br>&gt; <br>&gt; -- <br>&gt; Until later, Geoffrey<br>&gt; <br>
&gt; &quot;I predict future happiness for America if they can prevent<br>&gt; the government from wasting the labors of the people under<br>&gt; the pretense of taking care of them.&quot;<br>&gt; - Thomas Jefferson<br>&gt; _______________________________________________<br>
&gt; Ale mailing list<br>&gt; <a href="mailto:Ale@ale.org">Ale@ale.org</a><br>&gt; <a href="http://mail.ale.org/mailman/listinfo/ale">http://mail.ale.org/mailman/listinfo/ale</a><br>&gt; See JOBS, ANNOUNCE and SCHOOLS lists at<br>
&gt; <a href="http://mail.ale.org/mailman/listinfo">http://mail.ale.org/mailman/listinfo</a><br></div>