http://qs321.pair.com?node_id=657086


in reply to Re^2: disk check using perl
in thread disk check using perl

use warnings; can safely be removed. It's useful during development and debugging but shouldn't much change the operation of a program. As an alternative, you can add '-w' to the shebang line as in:

#!/usr/bin/perl -w
90% of every Perl application is already written.
dragonchild