The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    I'm about to go insane, help

    Discussion in 'Windows OS and Software' started by The Mighty Boosh, May 6, 2009.

  1. The Mighty Boosh

    The Mighty Boosh Notebook Enthusiast

    Reputations:
    0
    Messages:
    31
    Likes Received:
    0
    Trophy Points:
    15
    I have hex dump of a text file. I have been googling how to rebuild a text file from a hex dump for hours now. I'm going insane. How the hell do I rebuild the original file from the hex dump? I have the entire hex dump from the original file, what do I do? I am so lost.

    Any help would be SO appreciated.

    Thank you.
     
  2. Nebelwand

    Nebelwand Notebook Consultant

    Reputations:
    119
    Messages:
    213
    Likes Received:
    0
    Trophy Points:
    30
    If you speak Linux, xxd does things like that. Don't know anything for Windows, sorry.
     
  3. n4094c

    n4094c Newbie

    Reputations:
    0
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    5
    Sounds like something perl could do. Try posting on the perl newsgroup comp.lang.perl.misc. If you're not a programmer you might offer to pay someone a few bucks to write a script for you or do the conversion for you. You may be able to view the text in the file using debug from the command line, e.g. debug {filename} followed by the d command to dump the next set of bytes to the screen. The text equivalent is displayed on the right hand side. HTH.