Help for this page

Select Code to Download


  1. or download this
    open(SENDMAIL, '|/usr/sbin/sendmail -oi -t')
       or (unlink ($outfile),
        diehtml("Can't fork for sendmail: $!\n"));
    
  2. or download this
    open(SENDMAIL, '|/usr/sbin/sendmail -oi -t')
       or do{ unlink($outfile); diehtml("Can't fork for sendmail: $!\n")};
    
  3. or download this
    TRUE or do{does not get done}
    FALSE or do{does get done}
    
  4. or download this
    print SENDMAIL $msg
    close SENDMAIL;
    
  5. or download this
    warn "Before SENDMAIL open\n";
    open(SENDMAIL.....)
    warn "After open\n";
    
  6. or download this
    [root@devel3 root]# which sendmail
    /usr/sbin/sendmail
    ...
    Hello Me!
    
    [root@devel3 root]#