Help for this page

Select Code to Download


  1. or download this
    print"$path_name\n"x grep/test$/,@names;
    
    say$path_name x grep/test$/,@names;
    
  2. or download this
    /test$/&&print$path_name,$/for@names;
    
    /test$/&&say$path_name for@names;
    
  3. or download this
    print"$_\n"x grep/test$/,@names;
    
    say for grep/test$/,@names;
    
  4. or download this
    /test$/&&print$_,$/for@names;
    
    /test$/&&say for@names;
    
  5. or download this
    print/.*test$/g,$/ for@names;
    
    say/.*test$/g for@names;