Last active
July 9, 2021 18:55
-
-
Save lazd/19cbff2f442fc5c245928dec987ffe22 to your computer and use it in GitHub Desktop.
Convert Nintendo 64 .eep to .srm
This file contains 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
#!/bin/sh | |
# Usage: ./eep2srm "Goldeneye 007.eed" "Goldeneye 007.srm" | |
# Make sure the script is executable: chmod +x eep2srm.sh | |
dd if=/dev/zero bs=296960 count=1 of="$2" | |
dd if="$1" bs=2048 count=1 conv=notrunc of="$2" | |
echo "Done!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment