Monday 29 April 2013

Finding files with time stamp linux

Problem:  Find files should list time stamp along with file name.

Solution
find -name demo.jar -printf '%Tc %p\n'

The above command will search for "demo.jar" file in current working directory and list results along with time stamp

No comments:

Post a Comment