Showing posts with label List Most recent files. Show all posts
Showing posts with label List Most recent files. Show all posts

Wednesday, August 24, 2016

List files that are modified recently with Timestamp

# find <PATH> -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort -r | more

Example :

# find /var/www/html -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort -r | more