Getting Latest files

Hai
I wolud like to know how to get the latest files.
ex:
file_ssss_00
file_ssss_01

i need to get file_ssss_01 files only. (in Unix script)

Please give some idea ...

You can use ls -lrt|tail -1

You can leave the -l off if you don't want the long format. just ls -rt.