On 09/13/2013 07:48 AM, Joseph wrote:
I want to list recursively certain type of files eg. *.pdf but I want to display: date, path and newest file first.What is the easiest way of doing it?
Perhaps not the most elegant solution.ls -lt `du -a|grep -i '\.pdf$'|awk '{ print $2 }'`|awk '{ print $6,$7,$8,$9,$10,$11 }'