Linux command to list all files in subdirectories

2015-01-13

++ Linux command to list all files in subdirectories

find . -type f -exec ls -l {} \; 2> /dev/null | sort -t' ' -k +6,6 -k +7,7