- or download this
sub promptFilename {
my $prompt = shift;
- or download this
print $prompt . "\n";
- or download this
my $file;
while(! $file){
$file = <>;
- or download this
chomp($file);
- or download this
$file =~ s/^"(.+)"$/$1/; # unquote
- or download this
}
return $file;
}