Help for this page

Select Code to Download


  1. or download this
    print STDERR "prints...\n";
    
    close(STDERR);
    
    print STDERR "doesn't print...\n" or print "this was bound to fail\n";
    
  2. or download this
    open(STDERR,'>/dev/null');
    
    print STDERR "doesn't fail so this..." or print "...won't print";