List all files in subdirectories which are modifiled recently.

Hello,

I wanted to
list all files in subdirectories which are modifiled recently. need to display all files with full details like hpw it display with ls -l ( date, size,..)

Thanks
Bala

At the very least, you should define "recently".

What have you tried?

Regards,
Alister

i have tried with find . -type f -mtime -1
But, i need to display output with full details ( date, size,user,..) and descending oprder with modified date..

Try find . -type f -mtime -1 -ls .