Created
December 15, 2011 10:54
-
-
Save bluefuton/1480694 to your computer and use it in GitHub Desktop.
Compare two directory trees with diff
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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