본문 바로가기
개발환경

[개발환경] cloc 특정 파일, 디렉토리 제외 옵션

by hong0 2021. 6. 25.
반응형

CLOC - Count Lines of Code

cloc은 코드의 라인수를 세어주며, 설치 및 사용법은 아래를 참고한다.

 

[개발환경] cloc 사용법

cloc은 다양한 프로그래밍 언어에서 빈 줄, 주석 줄 및 소스 코드의 실제 줄을 계산해 준다. 설치 방법은 아래 OS에 따라 guide 되어 있다. npm install -g cloc # www.npmjs.com/package/cloc sudo apt-get inst..

hong00.tistory.com

 

버전 확인

cloc --version

특정 파일 타입 제거 후 코드라인 수를 계산할 수 있다.

cloc --exclude-ext-java,html src/

특정 디렉토리 제거 후 코드라인 수를 계산할 수 있다.

cloc --exclude-dir=test src/

다양한 option은 아래 link를 참조한다.

 

CLOC -- Count Lines of Code

[Translations: Belarussian, Bulgarian, Russian, Serbo-Croatian, Slovakian Ukrainian ] cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. Given two versions of a code

cloc.sourceforge.net

 

반응형

댓글