如何忽略基于 cloc.. 后缀的文件?

How to ignore files based on suffix in cloc..?

这应该是一项微不足道的任务,但无论是阅读文档和手册页还是通过谷歌搜索都无法找到我想要实现的目标的解决方案:

cloc 正在扫描我们的源代码树,我们希望它忽略所有 *.html 和 *.css 文件。

有什么方法可以给 cloc 一个要忽略的文件扩展名列表吗?

阅读帮助,通过 cloc --help,得到:

--exclude-ext=<ext1>[,<ext2>[...]] 
Do not count files having the given file name extensions.

我试过了

cloc <file(s)/dir(s)> --exclude-ext=html,css

它按预期工作。