Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -e '@a=qw/a b c/; print while <@a>'
    @a = ('a', 'b', 'c');
    use File::Glob ();
    print $_ while defined($_ = glob(join($", @a)));
    -e syntax OK
    
  2. or download this
    $ perl -le '@a=qw/a b c/; print while <@a>'
    a
    b
    c