binary to readable format

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • navrma
    New Member
    • Mar 2008
    • 4

    #1

    binary to readable format

    Hi all,

    I m having a file in binary format.. i want to read the content of that file.. how to convert it into readable(text) format..

    Thank U..
  • docdiesel
    Recognized Expert Contributor
    • Aug 2007
    • 297

    #2
    Hi,

    if it's a binary, there should be no text to read. But I think what you search for is the program hexdump. Try a "hexdump -C myfile". It will show you the content in hexadecimal, with the printable bytes in ASCII in a separate column.

    Regards,

    Bernd

    Comment

    Working...