Anyway, I just went through several techniques of examining a mysterious.dmp, and thought I'd share the experience. Much of it would apply to delving into any mixed binary/ascii file.
- The worst way: more mysterious.dmp
gave me frightening glyphs and angry beeps (xset b off to stop those), like R2-D2 invoking dread Cthulhu. Worse, my session would henceforth speak to me only in proto-Sumerian. I could kill the terminal window and open a new one, of course, but I still spent several hours plastering smooth curves over all the office's sharp corners, just to be safe. - Not quite so bad: less mysterious.dmp
let me look at the file, making harmless marks of the binary characters, and didn't mangle my session's character set. Yay! I do need to make a habit of using less instead of more. - Still pretty painful: grep -a "what I'm looking for" mysterious.dmp
The -a flag makes grep look into a file even though it's binary. It has no proper idea of where lines end in a binary file, though, so your hits can be really long. I had better luck grepping the files that resulted from the operations below. - Good: imp me@mydb show=Y file=mysterious.dmp full=y log=mysterious_contents.txt
This gives you a clean-looking file (well, except for all the gratuitous quotation marks). It's also the only technique I know that you can use on Windows (without Cygwin). You don't get data contents, though, just DDL. - Best: strings mysterious.dmp > mysterious_contents.txt
This GNU strings utility is really great! You get the ASCII, the whole ASCII, and nothing but the ASCII, quick and clean.
1 comment:
Hi Catherine,
It's also the only technique I know that you can use on Windows (without Cygwin).
You can get native ports for Win32 of some Unix utilities (including grep, less, sed, gawk...but not strings :-( at:
http://unxutils.sourceforge.net/
regards,
ales
Post a Comment