Skip to content

Instantly share code, notes, and snippets.

@olimortimer
Created November 5, 2015 15:20
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 olimortimer/e867231fd7b19d17780e to your computer and use it in GitHub Desktop.
Save olimortimer/e867231fd7b19d17780e to your computer and use it in GitHub Desktop.
Shell: Compare file names only
# Compare file names only, without comparing the contents - good for a quick diff
diff <(cd folder1 && find . | sort) <(cd folder2 && find . | sort)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment