pokecrystal-board/compare.sh

12 lines
252 B
Bash
Raw Normal View History

2013-05-22 00:11:07 -07:00
#!/bin/sh
# 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
2014-02-04 20:35:51 -08:00
diff -u baserom.txt pokecrystal.txt | less