当我想要 grep 某个目录中的所有 html 文件时,我执行以下操作
grep --include="*.html" pattern -R /some/path
which works well. The problem is how to grep all the html,htm,php files in some directory?
从这个 Use grep --exclude/--include syntax to not grep through certain files,似乎我可以做到以下几点
grep --include="*.{html,php,htm}" pattern -R /some/path
但可惜的是,这对我不起作用。
仅供参考,我的 grep 版本是2.5。