[Apex Archive] eliminating duplicates to save on storage #137
snake-biscuits
started this conversation in
Guides
Replies: 1 comment
-
automating deletion and symlinks might take a while |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Doing some bash script trickery to eliminate duplicate files
SHA256 hashes will be dumped into the same file w/
sha256sum
Where
seasonX/DDmmYY
is a release (e.g.season0/4feb19
)Use
*.bsp_lump.client
instead of*.bsp_lump
for season 18 onwards\(
&\)
ensure patterns are OR'dI could do separate files to use
sha256sum -c
But since everything is getting hashes I'll compare the hashes w/ python
Once duplicates have been identified I'll turn them into symlinks (
mklink
on Windows)Beta Was this translation helpful? Give feedback.
All reactions