- or download this
use strict;
use warnings;
...
system ($comm);
print "$?\n";
}
- or download this
$ perl test.pl file.txt
- or download this
$ perl test.pl file\ name.txt
- or download this
if (isReadableFile ($ref_file)) {
$ref_file =~ s/ /\\ /g; ###### Added
...
} else {
print STDERR "$ref_file Does not exist\n";
}