Skip to content

Instantly share code, notes, and snippets.

@marknorgren
Created August 18, 2014 17:47
Show Gist options
  • Save marknorgren/6c2d9413649033b9826f to your computer and use it in GitHub Desktop.
Save marknorgren/6c2d9413649033b9826f to your computer and use it in GitHub Desktop.
Recursively md5 files in directory
#via: http://superuser.com/a/72787
md5 -q <(find . -type f 2>/dev/null | xargs md5 -q | sort)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment