What's a good hex editor/viewer for the Mac? I've used xxd for viewing hexdumps, and I think it can be used in reverse to make edits. But what I really want is a real hex editor.
That's my choice.
Chuck
2009-05-06 00:49:56
Yea, and you can read the developer talking about fun implementing stuff on it here http://ridiculousfish.com/blog/
kch
2009-05-06 00:50:11
+1 I've always used HexFiend myself, and had not heard of 0xED... nice to learn about something new (new to me, anyway).
Jarret Hardie
2009-05-05 23:25:25
A:
There are probably better options, but I use and kind of like TextWrangler for basic hex editing. File -> hex Dump File
Pablo Santa Cruz
2009-05-05 23:10:16
+4
A:
I use Vim as a hex editor:
- Open the file in Vim.
Run the command
:% ! xxd
- Edit.
Once done, run
:% ! xxd -r
- Save.
Ayman Hourieh
2009-05-05 23:22:47