Files
2024-10-07 17:05:19 -04:00

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