microsoft / vscode-hexeditor

VS Code Hex Editor
https://marketplace.visualstudio.com/items?itemName=ms-vscode.hexeditor
MIT License
525 stars 85 forks source link

Compare Hex Files #445

Closed MathiasClarity closed 1 year ago

MathiasClarity commented 1 year ago

Thank you for this good extension, but unfortunately one important thing is missing, the comparison of the binary files. I tried several times, but the differences of the HEX files are not shown in .

It would be great if that would work, because the amount of data is very large and it is very difficult for people to visually recognize differences.

Best regards, Mathias Weichert

HEX Files not working: grafik

ASCII Files works fine:

grafik

Workaround with external tools:

Under Windows you can use WinMerge, WinMerge can manage binary files. I have testet this on yesterday

grafik

grafik

Under Linux you can use "xxDiff":

sudo apt-get install xxdiff

make an hex file from your bin file: xxd file1.bin file1.hex xxd file2.bin file2.hex

xxdiff file1.hex file2.hex

grafik

lramos15 commented 1 year ago

Duplicate of #47