Hacker News new | ask | show | jobs
by Zash 4913 days ago
xxd is a pretty nice hexdump substitute that has a reverse mode of operation (-r), turning a hexdump into binary.
1 comments

From what I recall xxd is actually part of the vim distribution, so it's common, but not everywhere. An approximate standard (coreutils) alternative is `od -x' (although it doesn't include the ASCII readable char column at the right, which can be annoying)