Help for this page

Select Code to Download


  1. or download this
    # this reports a problem if func() fails.
    func $arg1, $arg2 or warn "error invoking func()";
    ...
    # Not what you might expect
    # this invokes func( $arg1, ($arg2 || warn "error invoking func()" );
    func $arg1, $arg2  || warn "error invoking func()";
    
  2. or download this
    # At the top of the file in the configuration section
    my $first_backup = 1;
    ...
            die( Invalid status '$status' from first backup component" );
        }
    }