Help for this page

Select Code to Download


  1. or download this
    open(STDOUT, "/dev/null");          # suppressing output  
    open(STDERR, "/dev/null");          # suppressing output
    
  2. or download this
    open STDOUT,'>','/dev/null';
    open STDERR,'>','/dev/null';