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 <<a href="mailto:mbmiller@taxa.epi.umn.edu">mbmiller@taxa.epi.umn.edu</a>> 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>
> On Sun, Mar 30, 2008 at 10:13:26AM -0500, Jordan Peacock wrote:<br>
>> An ls -R * command seems to work, although I get EVERYTHING. It would be<br>
>> preferable to somehow just get the folders.<br>
><br>
> 'find . -type d'<br>
<br>
</div>That's a good answer. You might want to then either snip out the initial<br>
"./", like so...<br>
<br>
find . -type d' | perl -pe 's#^\./##'<br>
<br>
...or even drop all of the path except for the directory name:<br>
<br>
find . -type d | gawk -F'/' '{print $NF}'<br>
<br>
Related to this kind of stuff, I really like this "tree" 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. It also allows for HTML<br>
output with links. 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>