Skip to content

Instantly share code, notes, and snippets.

@bluefuton
Created December 15, 2011 10:54
Show Gist options
  • Save bluefuton/1480694 to your computer and use it in GitHub Desktop.
Save bluefuton/1480694 to your computer and use it in GitHub Desktop.
Compare two directory trees with diff
# Compare the contents of dir1 with dir2 (excluding anything in .svn folders and .DS_Store files)
diff -a -q -r -x *.svn* -x .DS_Store dir1 dir2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment