J
Jeff Boes
Hmm ... this one's got me puzzled:
$ perl -v
This is perl, v5.8.3 built for i686-linux
....
$ perl -w -e 'no warnings; use Benchmark qw
hireswallclock)'
Subroutine Benchmark::mytime redefined at
/usr/local/lib/perl5/5.8.3/Benchmark.pm line 456.
$ perl -w -e 'no warnings qw(redefine); use Benchmark qw
hireswallclock)'
Subroutine Benchmark::mytime redefined at
/usr/local/lib/perl5/5.8.3/Benchmark.pm line 456.
Does anyone know of a way to completely suppress this warning? It's
irritating, because I have a script running in cron that reports this
message, over and over. (I don't want to suppress or redirect STDERR,
because there may be other legitimate errors.)
$ perl -v
This is perl, v5.8.3 built for i686-linux
....
$ perl -w -e 'no warnings; use Benchmark qw
Subroutine Benchmark::mytime redefined at
/usr/local/lib/perl5/5.8.3/Benchmark.pm line 456.
$ perl -w -e 'no warnings qw(redefine); use Benchmark qw
Subroutine Benchmark::mytime redefined at
/usr/local/lib/perl5/5.8.3/Benchmark.pm line 456.
Does anyone know of a way to completely suppress this warning? It's
irritating, because I have a script running in cron that reports this
message, over and over. (I don't want to suppress or redirect STDERR,
because there may be other legitimate errors.)