Created
          October 21, 2014 18:10 
        
      - 
      
- 
        Save dstebila/1731faaad1da66475db1 to your computer and use it in GitHub Desktop. 
    Shell script to convert binary to hex
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/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