Skip to content

Instantly share code, notes, and snippets.

@deckerego
Created December 6, 2013 17:13
Show Gist options
  • Save deckerego/7828521 to your computer and use it in GitHub Desktop.
Save deckerego/7828521 to your computer and use it in GitHub Desktop.
How to list all files in a directory, ignoring hidden Subversion metadata directories
find ./directory/ -not \( -name .svn -prune \) -type f -printf "%p\t"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment