On Fri, 2 Oct 1998, Richard Ivanowich wrote:

> I don't know if this is offtopic or not...i think it is on topic though.
>
> How do i read the core dumps that my program makes???
> 
> Richard Ivanowich

You can take a look at the actual core dump by using strings

$ strings core |less

will do the trick. 


Also, if you want to try and figure out what's going on with your program,
use the strace program

$ strace buggy_program

Of course, don't start running programs just because some weirdo on a
mailing list says so, read the man pages.

Hope this helps,

--stevej--


--
        ---------------------------------------------------------
       | Steve Jenson                 :                   Linux: |
       |   [EMAIL PROTECTED]            :          The choice of   |
       |     http://www.atdt.com/     :    the GNU generation    |
       |---------------------------------------------------------|
       |          %gui =~ tr/MS/X/s;  :  Simple is elegant       |
        ---------------------------------------------------------

Reply via email to