diff options
author | Bryan Bishop <kanzure@gmail.com> | 2012-05-16 13:49:50 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2012-05-16 13:49:50 -0500 |
commit | e27cdc43b2995e63e0d7aff5c252f1de6e799986 (patch) | |
tree | 05c79bb8d30d53c58bed274204bc910359003c45 | |
parent | 079afeea4626d21a179f3c836e3f1d1c9a1f6d83 (diff) |
make compare.sh overwrite the previous hexdump
-rwxr-xr-x | compare.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compare.sh b/compare.sh index 27f8a4cab..137db6705 100755 --- a/compare.sh +++ b/compare.sh @@ -3,9 +3,9 @@ # create baserom.txt if necessary if [ ! -f baserom.txt ]; then - hexdump -C baserom.gbc >> baserom.txt + hexdump -C baserom.gbc > baserom.txt fi -hexdump -C pokecrystal.gbc >> pokecrystal.txt +hexdump -C pokecrystal.gbc > pokecrystal.txt diff baserom.txt pokecrystal.txt | less |