ls -alR
find . -exec ls -dl \{\} \; | awk '{print $3, $4, $9}'
find . -printf "%u %g %p\n"
tree -p -u -g -f -i
tree -p -u -g -f
find $PWD -type f
find . -ls
List only .html files
find . -name "*.html"
Ref: http://stackoverflow.com/questions/501367/how-to-recursively-list-all-files-and-directories
No comments:
Post a Comment