Hi doug,

you may try embedding your script in one big try block and executing quit
if try fails. I.e.

if error? try [
 all your code here
] [ quit ]


Also, always a good idea to test your scripts, before you use them ...

Using halt won't do the trick since what halt does is:
>> help halt
Stops evaluation and returns to the input prompt.

And the input prompt is not where you want to end up ...

Elan

Reply via email to