Skip to content

Instantly share code, notes, and snippets.

@fastslack
Created April 12, 2015 20:04
Show Gist options
  • Save fastslack/838f2947aeea631b5cca to your computer and use it in GitHub Desktop.
Save fastslack/838f2947aeea631b5cca to your computer and use it in GitHub Desktop.
Script to get OpenRA maps hashes
#!/bin/bash
for f in ~/.openra/maps/ra/*.oramap
do
printf "\nThe hash for $f is: "
mono /usr/lib/openra/OpenRA.Utility.exe ra --map-hash $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment