3b650c1e7b
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
7 lines
225 B
Bash
Executable File
7 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Converts textual result of "od -tx1 <FILE"
|
|
# back into a binary FILE
|
|
|
|
grep -a '^[0-7][0-7][0-7][0-7][0-7][0-7][0-7][0-7]* [0-9a-f][0-9a-f] [0-9a-f][0-9a-f] [0-9a-f][0-9a-f] [0-9a-f][0-9a-f]' | busybox hexdump -R
|