find file and sort by time - Serbipunk/notes GitHub Wiki
find ./ -name xxx.so -ls | sort -n
find . -type f | xargs ls -l --time-style="+%d-%m-%Y"
https://unix.stackexchange.com/questions/19149/list-the-timestamp-of-the-files-in-find-command
find ./ -name xxx.so -ls | sort -n
find . -type f | xargs ls -l --time-style="+%d-%m-%Y"
https://unix.stackexchange.com/questions/19149/list-the-timestamp-of-the-files-in-find-command