Skip to content

Instantly share code, notes, and snippets.

@zakelfassi
Created February 15, 2016 17:45
Show Gist options
  • Save zakelfassi/70d90abf4f3caff2ef59 to your computer and use it in GitHub Desktop.
Save zakelfassi/70d90abf4f3caff2ef59 to your computer and use it in GitHub Desktop.
Get Last 1000 edited files in Unix
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