Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这应该是一项微不足道的任务,但是阅读文档和手册页或谷歌搜索都没有为我想要实现的目标找到解决方案:
cloc正在扫描我们的源代码树,我们希望它忽略所有 *.html 和 *.css 文件。
cloc
有没有办法给出cloc一个文件扩展名列表来忽略..?
阅读帮助,通过cloc --help,给出:
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
它按预期工作。