Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    
    ...
    print "calling pod2usage with -exitval => 'NOEXIT'\n";
    pod2usage(-exitval => 'NOEXIT');
    print "We are still here after using -exitval => 'NOEXIT'.\n";
    
  2. or download this
    Calling pod2usage(1)
    EXIT_OVERRIDE
    We are still here after overriding exit.
    calling pod2usage with -exitval => 'NOEXIT'
    We are still here after using -exitval => 'NOEXIT'.