Well, all of the solutions worked....<br><br>but that tree program is FANTASTIC. Thank you so much. Very easy to read/use.<br><br><div class="gmail_quote">On Mon, Mar 31, 2008 at 11:17 AM, Mike Miller &lt;<a href="mailto:mbmiller@taxa.epi.umn.edu">mbmiller@taxa.epi.umn.edu</a>&gt; wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">On Sun, 30 Mar 2008, Florin Iucha wrote:<br>
<br>
&gt; On Sun, Mar 30, 2008 at 10:13:26AM -0500, Jordan Peacock wrote:<br>
&gt;&gt; An ls -R * command seems to work, although I get EVERYTHING. It would be<br>
&gt;&gt; preferable to somehow just get the folders.<br>
&gt;<br>
&gt; &#39;find . -type d&#39;<br>
<br>
</div>That&#39;s a good answer. &nbsp;You might want to then either snip out the initial<br>
&quot;./&quot;, like so...<br>
<br>
find . -type d&#39; | perl -pe &#39;s#^\./##&#39;<br>
<br>
...or even drop all of the path except for the directory name:<br>
<br>
find . -type d | gawk -F&#39;/&#39; &#39;{print $NF}&#39;<br>
<br>
Related to this kind of stuff, I really like this &quot;tree&quot; program:<br>
<br>
<a href="http://mama.indstate.edu/users/ice/tree/" target="_blank">http://mama.indstate.edu/users/ice/tree/</a><br>
<br>
Using that you can do things like this...<br>
<br>
tree -dN<br>
<br>
...to get a neat view of your directory tree. &nbsp;It also allows for HTML<br>
output with links. &nbsp;That can be very useful.<br>
<br>
Mike<br>
<br>
_______________________________________________<br>
TCLUG Mailing List - Minneapolis/St. Paul, Minnesota<br>
<a href="mailto:tclug-list@mn-linux.org">tclug-list@mn-linux.org</a><br>
<a href="http://mailman.mn-linux.org/mailman/listinfo/tclug-list" target="_blank">http://mailman.mn-linux.org/mailman/listinfo/tclug-list</a><br>
</blockquote></div><br><br clear="all"><br>-- <br>Jordan Peacock<br><a href="mailto:hewhocutsdown@gmail.com">hewhocutsdown@gmail.com</a><br><a href="http://hewhocutsdown.blogspot.com">hewhocutsdown.blogspot.com</a>