in reply to Builing a Recursive Directory Listing
Or if you want a shell option, I like this:
find . -print | sed -e 's,[^/]*/\([^/]*\)$,`--\1,' -e 's,[^/]*/,| ,g' [download]