in reply to List all Dirs, subdirs and files

Can I ask what your goal and operating system are? I'm wondering because there might be a unix command that'll do it without needing to write a script. (Heresy!)

Replies are listed 'Best First'.
Re^2: List all Dirs, subdirs and files
by Anonymous Monk on Jul 18, 2005 at 23:39 UTC
    Running on a Sun Solaris, not sure what version. Could I use the command 'Find' without trying to find a specific word and to find everything in every directory?
      Yes! I use it all the time. Just type this:
      find /directory/here
      to list everything recursively and with the search path prepended. :)