<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
On Windows I use:<BR>
<BR>
type \cm3\bin\j.cmd<BR>@echo off<BR>setlocal<BR>set a=1<BR>:loop<BR>echo %a%<BR>\bin\x86\cdb -g -G Juno.exe @M3no-trestle-await-delete @M3paranoidgc<BR>set /a a=a + 1<BR>goto :loop<BR>
<BR>
this runs Juno in a loop, in a debugger, until it hits an access violation.<BR>
It prints how many times it has run before each run.<BR>
-g means go right away at the start of the process <BR>
-G means go past the end of the process <BR>
set /a is for "arithmetic" (expression evaluation) <BR>
<BR>
What is the equivalent with gdb/sh?<BR>
<BR>
I've search the web some but haven't found it yet.<BR>
<BR>
Thanks,<BR>
- Jay<BR> </body>
</html>