Some Useful UNIX Commands
find all text files on the server, sort by year and then export resultset to a file:
find / -name "*.txt" -exec ls -lrt {} \; |sort -k8 | more > name.txt
find all text files on the server, sort by year and then export resultset to a file: