mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
6 lines
225 B
Bash
Executable file
6 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
|