Skip to content

Instantly share code, notes, and snippets.

@mcenirm
Created June 5, 2014 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcenirm/efa39c2096a21c454feb to your computer and use it in GitHub Desktop.
Save mcenirm/efa39c2096a21c454feb to your computer and use it in GitHub Desktop.
For a set of directories, show the most recent files found.
#!/bin/bash
for d in "$@" ; do
echo
echo "${d}"
find "${d}" -type f -printf '%T+ %P\n' | sort | cat -n | tail -3
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment