Help for this page
#!/usr/bin/perl use warnings; ... prints: this went to STDERR this went to STDOUT
#!/usr/bin/perl use warnings; ... print STDOUT "this went to STDOUT\n"; print STDERR "this went to STDERR\n";