Skip to content

Instantly share code, notes, and snippets.

@lambdan
Created July 15, 2026 15:39
Show Gist options
  • Select an option

  • Save lambdan/5ba97d6a95403b17246406fb4fcdcd05 to your computer and use it in GitHub Desktop.

Select an option

Save lambdan/5ba97d6a95403b17246406fb4fcdcd05 to your computer and use it in GitHub Desktop.
Check fitgirl md5 on Linux
# fitgirl.md5's looks like this, which is incompatible with Linux:
# fc7a45afe0a8efa3e9426c875f0cdf2b *..\nvngx_dlssd.dll
# ed5acc14ffcbd33b0faf2eaefcc84f89 *..\nvngx_dlssg.dll
# however, it is very easily fixed by just removing the wildcard and replacing backslashes with forward slashes
# pwd: <game dir>/_Redist
sed 's/\*//; s#\\#/#g' fitgirl.md5 | md5sum -c -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment