Next Program Repair Shop 14

Useless variables

        my $usage = "NO ARGS!
        This perl script finds all duplicate files by content, not file name
        usage: $0 <options to find>
        example: $0 . -mount\n\n";
        die $usage if @ARGV == 0;
        die "NO ARGS!
        This perl script finds all duplicate files by content, not file name
        usage: $0 <options to find>
        example: $0 . -mount\n\n"
                if @ARGV == 0;
        @ARGV > 0 or die "...";

Next Copyright © 2006 M. J. Dominus