What's a good hex editor/viewer for the Mac?

Viewed 193397

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.

7 Answers

To view the file, run:

xxd filename | less

To use Vim as a hex editor:

  1. Open the file in Vim.
  2. Run :%!xxd (transform buffer to hex)
  3. Edit.
  4. Run :%!xxd -r (reverse transformation)
  5. Save.

I have recently started using 0xED, and like it a lot.

There are probably better options, but I use and kind of like TextWrangler for basic hex editing. File -> hex Dump File

The one that I like is HexEdit Quick and easy to use

Related