On Wed, 16 Apr 2003 22:29:33 +0100 Keith Watson kpwatson@ukfsn.org wrote:
In DOS the command 'dir /s /b' gives a useful listing of just filenames prefixed with directory paths.
I can't remember what the output of 'dir /s /b' looks like but possible thinsg to try are:
ls -R ls -lR
find . -type f find . -type f | xargs ls -l
Steve.