- or download this
while(<>) {
chomp;
...
my $exec = `md5sum $filename`;
print $exec ."\n";
}
- or download this
find /tmp/ -type f | ./hash.pl <br>
/tmp/File Wasn\'t found.txt <br>
...
md5sum: Wasn't: No such file or directory<br>
md5sum: found.txt: No such file or directory<br>
<br>
- or download this
while(<>) {
chomp;
...
my $exec = `md5sum '$filename'`;
print $exec ."\n";
}
- or download this
find /tmp/ -type f | ./hash.pl
/tmp/File Wasn\'t found.txt
sh: Syntax error: Unterminated quoted string