Help for this page

Select Code to Download


  1. or download this
    open( STDERR, ">>/home/sulfericacid/public_html/test/error.log" )
      or die "Cannot open error log, weird...an error opening an error log
    +: $!";
    
  2. or download this
    open( SAVED, ">>$localfile" );    # || die $!;
    
  3. or download this
    if( open SAVED, ">>$localfile" ) {
       print SAVED $crack;
    }