Software >> OS >> Unix >> Solaris >> Shell >> How to find files older than X days and list the files showing date in numeric month format and filename and sorted by datebash-3.00# find /somedir/ -mtime +X -exec ls -ldE {} \; | awk '{print " " }' | sort
|