File: hex2bin

package info (click to toggle)
smstools 3.1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,596 kB
  • ctags: 820
  • sloc: ansic: 14,175; sh: 1,173; php: 115; makefile: 44; awk: 17
file content (19 lines) | stat: -rwxr-xr-x 421 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/gawk -f

# This script reads a hex-dump and converts it to a binary file.
# The hex-dump must contain one or more hexadecimal numbers separated
# by spaces, colon or 0x. The lest significant end of the hex values
# is on the right side. Valid examples:
#
# echo "01 2 0x03 04:05 fa3B" | hex2bin > testfile.bin


BEGIN {
  FS="((0x)|[ :])*";
}

{
  for (i=1; $i!=""; i++) {
    printf "%c",strtonum("0x"$i);
  } 
}