to get the timestamp of files from the files and folders in Unix

Hi,

I had a directory and many subdirectories and files with in it.
Now i want to get the timestamp of files from the files and folders recursively. :frowning:

Please help me to generate a script fort he above mentioned requirement!

Appreciate for ur qick response
Thanks in advance!

Thanks & Regards,
Kishan.

See if this meets your requirements:

ls -altR | awk '{print $9 ":  " $6 "-" $7 "-" $8}'

hi,

thanks a lot for ur help and time....