Help for this page

Select Code to Download


  1. or download this
    $ perl -le'print for @ARGV' a.xml
    a.xml
    ...
    $ perl -le'print for @ARGV' foo/*.xml
    foo/x.xml
    foo/y.xml
    
  2. or download this
    BEGIN {
        if ($^O =~ /MSWin32/) {
    ...
            @ARGV = map File::Glob::bsd_glob($_), @ARGV;
        }
    }