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.
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.
To view the file, run:
xxd filename | less
To use Vim as a hex editor:
:%!xxd (transform buffer to hex):%!xxd -r (reverse transformation)There are probably better options, but I use and kind of like TextWrangler for basic hex editing. File -> hex Dump File