vote up 1 vote down star
1

Is there some *nix tool or perl/php library that will let you easily create directory tree visualizations that look like the following?

www
|-- private
|    |-- app 
|    |    |-- php
|    |    |    |-- classes
|    |    |    +-- scripts
|    |    |-- settings
|    |    +-- sql
|    +-- lib
|         +-- ZendFramework-HEAD
+-- public
	|-- css
	|-- images
	+-- scripts
flag

2 Answers

vote up 9 vote down check

How about this example from Unix Tree / Linux Tree:

ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/   /' -e 's/-/|/'
link|flag
You gotta love a one-liner – pavium Oct 17 at 7:09
Also works on my Mac! Thank you! – lexu Oct 17 at 7:48
That's disgustingly awesome, but part of what I like about the output above is how it's not all dashes to the files, you get those pipes connecting subdirectories vertically – Alan Storm Oct 17 at 17:10
You might check this person's solution out then: sandeep-vaniya.blogspot.com/2008/04/… – bobbymcr Oct 17 at 17:23
vote up 1 vote down

Have a look at App::Asciio

/I3az/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.