I have a file composed of one line full of 8-bit binary number, i.e. like this:
01010100 01101000 01101001 01110011 00100000 01101001 01110011 00100000 01101010 01110101 01110011 01110100 00100000 01110100 01101000 01100101 00100000 01100010 01100101 01100111 01101001 01101110
I know for a fact that they are supposed to correspond to a ASCII symbol. For example 01010100
correspond to the letter T
("capital t").
I'd like to convert it all to a txt file (there are in the list some \n
and I've got a feeling that somehow ASCII-art will appear doing such. Can ou point me some shell method? I'd like to achieve that through the shell. Or at the very least Python.