How to find last modified file in Linux?
To find the last modified file in Linux, you can use the find
command with the -type f
option to search for regular files only, and then sort the results by modification time using the -printf
option.
find /path/to/directory -type f -printf '%TY-%Tm-%Td %TT %p
' | sort -r | head -n 1
This command will search for regular files in the specified directory and print out their modification time and filename in the format YYYY-MM-DD HH:MM:SS /path/to/file
, sorted by the modification time in reverse order (i.e., from newest to oldest). The head -n 1
command will then select the first (i.e., newest) file from the list.
- How Can You Overcome The Fear Of Making Mistakes When Speaking Spanish
- What Is The Nile Rivers Connection To The Sahara
- Why Do Some Movies Win So Many Awards But Others Dont Get Any Recognition
- What Are The Most Important Skills To Develop As A Doubles Tennis Player
- Which Series Has Better Cinematic Adaptations Lord Of The Rings Or Game Of Thrones
- What Are The Challenges Of Living In The Sahara
- Who Holds The Most Guinness World Records And What Are Some Of Their Achievements
- What Are Some Of The Best Shopping Areas In New York City
- How Can I Create A Flavorful And Healthy Vegetable Curry
- What Is The Karnak Open Air Museum And Why Is It Significant