mirror of
https://github.com/pret/gb-asm-tools.git
synced 2026-09-26 13:33:01 -04:00
8 lines
130 B
Bash
Executable File
8 lines
130 B
Bash
Executable File
#!/bin/sh
|
|
# Compares two given ROM files
|
|
|
|
hexdump -C "$1" > "$1".txt
|
|
hexdump -C "$2" > "$2".txt
|
|
|
|
diff -u "$1".txt "$2".txt | less
|