使用Glob匹配两个或多个文件

时间:2017-10-08 13:35:11

标签: glob

我正在尝试使用此Glob Online Tester找出如何匹配两个或多个文件。

匹配 styles / main.css index.html 文件的表达式是什么?

images/icons/home.svg
images/icons/phone.svg
images/promo.gif
images/logo.png
styles/main.css
index.html

1 个答案:

答案 0 :(得分:1)

只是

styles/main.css
index.html

如下所示:

screenshot of patterns in action

或者你可以read the documentation

  
      
  • {}允许以逗号分隔的“或”表达式列表
  •   

...并使用此:

{styles/main.css,index.html}