How Can I Find the Oldest File in a Directory Tree
How can I find the oldest file in a directory tree
find -type f -printf ‘%T+ %p\n’ | sort | head -n 1
Tags: cli
Read other posts
How can I find the oldest file in a directory tree
find -type f -printf ‘%T+ %p\n’ | sort | head -n 1
Tags: cli