root/hodgestar/PythonCode/PicturePocketRevEng/hex2bin.py
| Revision 283, 164 bytes (checked in by simon, 4 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | """Convert hex encoded file to binary data. |
| 2 | """ |
| 3 | |
| 4 | import sys |
| 5 | import binascii |
| 6 | |
| 7 | if __name__ == "__main__": |
| 8 | sys.stdout.write(binascii.a2b_hex(sys.stdin.read())) |
Note: See TracBrowser
for help on using the browser.
