pokecrystal-board/compare.sh
2012-05-16 13:49:50 -05:00

12 lines
251 B
Bash
Executable File

#!/bin/bash
# Compares baserom.gbc and pokecrystal.gbc
# create baserom.txt if necessary
if [ ! -f baserom.txt ]; then
hexdump -C baserom.gbc > baserom.txt
fi
hexdump -C pokecrystal.gbc > pokecrystal.txt
diff baserom.txt pokecrystal.txt | less