Using the tcsh shell on Free BSD, is there a way to recursively list all files and directories including the owner, group and relative path to the file?
ls -alR comes cl
Works in Linux Debian:
find $PWD -type f
How about this:
find . -exec ls -dl \{\} \; | awk '{print $3, $4, $9}'