What's a good hex editor/viewer for the Mac? [closed]
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:
- Open the file in Vim.
- Run
:%!xxd
(transform buffer to hex) - Edit.
- Run
:%!xxd -r
(reverse transformation) - Save.
- Open file with Xcode and press Command + Shift + J
- Right click file name in left pane
- Open as -> Hex