Locate files with a certain name and show their date

Category
unix
Date Created
26th Dec 2009
Last Updated
9th Jul 2010

Locate files with a certain name and show their date

Question

How to find files with a certain name and show their date

Answer


find . -name "slider.css" -exec ls -al {} \;

Related terms