in reply to Re: Force Perl Executable to Crash
in thread Force Perl Executable to Crash

Thanks for the pointer..
perl -e dump
didn't but
perl -e "()= sort {*a=*b, 1} 2,3"
did

Replies are listed 'Best First'.
Re^3: Force Perl Executable to Crash
by geekphilosopher (Friar) on Dec 07, 2006 at 01:11 UTC
    perl -e dump works for me in 5.6 - what kind of output are you looking for?
      Actually this command perl -e "@a=(1..5); map {@a=() if $x++>2, $_} @a" appears to cause a true abnormal termination where perl -e dump appears to be somewhat handled by Perl since I see the following message: This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. We were looking to force a true Perl abnormal termination and we are now able to do that
        For the sake of my oversized curosity, what on earth are you trying to accomplish by doing this?