Skip to content

Instantly share code, notes, and snippets.

@danhooper
Created March 1, 2015 21:08
Show Gist options
  • Save danhooper/42746c526f5dfd2db63f to your computer and use it in GitHub Desktop.
Save danhooper/42746c526f5dfd2db63f to your computer and use it in GitHub Desktop.
Find latest modified file in a directory
find . -type f -printf '%T@ %p\n' | sort -n | tail -1 | cut -f2- -d" "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment