Help for this page

Select Code to Download


  1. or download this
    wrap_system(qw(perl -u -e 1)) or die "$@\n"
    #perl exited with status 0 after receiving signal 6 (core dumped)
    
  2. or download this
    sub wrap_system {
        if ( 0 == system { $_[0] } @_ ) { return 1 }
    ...
        return;
    }