- or download this
elsif ($option eq 'f') {
print "Who are you looking for?\n";
&find;
}
- or download this
elsif ($option eq 'f') {
print "Who are you looking for?\n";
...
if (!&find($f)) {
print "Name $f cannot be found in the directory.\n";
}
- or download this
sub find {
chomp(my $f = <STDIN>);
...
}
}
- or download this
sub find {
my $rc = 0;
...
}
}
}