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 来计算代码行数。由于存在 BIN 和 esql 文件,因此有 140 个文件被忽略。如何使 cloc 读取这些文件?如何读取带有 bin 和 esql 等扩展名的文件?在此处输入图像描述
您可以使用该--include-ext选项包含无法识别类型的文件。在您的情况下,假设文件具有 .esql 扩展名:
--include-ext
cloc --include-ext=esql .
此外, cloc 有 option --read-binary-files,但手册页警告说这通常是一个坏主意。
--read-binary-files
查看man cloc手册页上的更多信息。
man cloc