Skip to content

Instantly share code, notes, and snippets.

@dstebila
Created October 21, 2014 18:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dstebila/1731faaad1da66475db1 to your computer and use it in GitHub Desktop.
Save dstebila/1731faaad1da66475db1 to your computer and use it in GitHub Desktop.
Shell script to convert binary to hex
#!/bin/bash
# Read either the first argument or from stdin (http://stackoverflow.com/questions/6980090/bash-read-from-file-or-stdin)
cat "${1:-/dev/stdin}" | \
# Convert binary to hex using xxd in plain hexdump style
xxd -ps | \
# Put spaces between each pair of hex characters
sed -E 's/(..)/\1 /g' | \
# Merge lines
tr -d '\n'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment