Created
February 15, 2016 17:45
-
-
Save zakelfassi/70d90abf4f3caff2ef59 to your computer and use it in GitHub Desktop.
Get Last 1000 edited files in Unix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f -printf '%T@ %p\n' | sort -n | tail -1000 | cut -f2- -d" " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment