Help for this page

Select Code to Download


  1. or download this
    my @headers = glob '*.h';
    
    print "@headers\n";
    
  2. or download this
    use File::Spec;
    
    my @headers = glob File::Spec->catfile($dir, '*.h');
    
    print "@headers\n";