in reply to RFC: Code testers/reviewers needed
Some comments on the code:
Digest::MD5::md5_hex is imported but not used.
$location is initialised via user input but then not used.
Line 61 could be simplified to: my $ext = $1;
Lines 71 and 72 could be written as a single line: $filename =~ s{.*/(.*)$}{$1};
The next statements on lines 76 and 94 are redundant, as each occurs immediately before the loop iterates anyway.
In addition, on line 94 the or clause does nothing. next can’t “fail”, and it doesn’t return a value.
Lines 101 to 105 could be rewritten as a single line: print $error eq '' ? "No errors.\n" : "\nErrors: $error";
Hope that helps,
| Athanasius <°(((>< contra mundum | Iustus alius egestas vitae, eros Piratica, |
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: RFC: Script testers needed
by AI Cowboy (Beadle) on Jun 06, 2013 at 17:13 UTC |