|
5/24 |
1999/12/4-6 [Computer/SW/Editors/Vi] UID:17003 Activity:low |
12/4 So how do I figure out the record structure of some log file that cannot be viewed with 'vi', 'cat', etc. Do I need to use getc/putc, go thru one character at a time, and figure it out myself? 'Strings' doesn't seem to help much either. -mtbb \_ Log file from what? \_ Just dump it with od -c (or whatever flavour of dumps you prefer). Then go through it and look for recognizable information. -alexf |