Help for this page

Select Code to Download


  1. or download this
    ls *.xml | more
    
  2. or download this
    echo *.xml
    
  3. or download this
    chomp( my @files = `echo *.xml` );
    
  4. or download this
    my @files = glob('*.xml');