Transform hexadecimal information to binary using a Linux command

前端 未结 1 1481
一向
一向 2020-12-07 10:48

I have this binary file on my Linux system...

 udit@udit-Dabba ~ $ cat file.enc
 Salted__s�bO��<0�F���Jw!���]�:`C�LKȆ�l

Using the hexdump

相关标签:
1条回答
  • 2020-12-07 11:52

    As @user786653 suggested, use the xxd(1) program:

    xxd -r -p input.txt output.bin
    
    0 讨论(0)
提交回复
热议问题