Help for this page

Select Code to Download


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