Timeline for Convert Binary Data Stored as ASCII to Binary
Current License: CC BY-SA 4.0
8 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Dec 7, 2020 at 14:24 | vote | accept | ScottishTapWater | ||
| Dec 7, 2020 at 6:58 | answer | added | fpmurphy | timeline score: 2 | |
| Dec 6, 2020 at 22:07 | comment | added | Ángel |
It is possible to generate this output with xxd -c 1 -b | sed 's/^[0-9a-f]*:/0b/' | cut -f 1-2 -d\ but xxd doesn't support -b with -r :/
|
|
| Dec 6, 2020 at 21:55 | comment | added | ScottishTapWater | "0b" not "0x" that was a typo. But yeah, binary representation | |
| Dec 6, 2020 at 21:55 | history | edited | ScottishTapWater | CC BY-SA 4.0 |
edited body
|
| Dec 6, 2020 at 21:51 | comment | added | Ángel | So binary representation (not hexadecimal), with one byte per line, a space between the nibbles and a prefix of "0x " ? | |
| Dec 6, 2020 at 21:29 | history | edited | ScottishTapWater | CC BY-SA 4.0 |
edited body
|
| Dec 6, 2020 at 21:16 | history | asked | ScottishTapWater | CC BY-SA 4.0 |