- or download this
#!/usr/bin/perl
open something, ">/dev/null";
print something "happilly\n"; # then
close something; #back up...
- or download this
#!/usr/bin/perl -w
use strict;
- or download this
open "something", ">/dev/null";
- or download this
#!/usr/bin/perl
use strict;
open ThisWorksGreat, ">/dev/null";