Last active
February 7, 2026 15:02
-
-
Save FNGarvin/c225c2738748d144420e4cda29658dff to your computer and use it in GitHub Desktop.
Directory manifest generation script - compare two directories, skipping .git and models subdirs
This file contains hidden or 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
| rm -f manifest_aware.txt ; find . \( -name .git -o -name models -o -name .venv -o -name __pycache__ -o -name manifest* \) -prune -o -type f -exec sha256sum {} + | sort -k 2 > manifest_dir1.txt | |
| rm -f manifest_aware.txt ; find . \( -name .git -o -name models -o -name .venv -o -name __pycache__ -o -name manifest* \) -prune -o -type f -exec sha256sum {} + | sort -k 2 > manifest_dir2.txt | |
| etc, then inspect, diff, or compare checksums of the two manifests. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment