linux - Cloc (Count Lines of Code) different Header -


i create cloc csv file , used file later in java application.

this app runs on linux vm, develope on windows pc.

the problem:

cloc generate 2 different header

command:

cloc . --csv --quiet --by-file --unix 

testoutput via java processbuilder.redirectoutput or > cloc.csv in cmd

header windows:

language,filename,blank,comment,code,"http://cloc.sourceforge.net v 1.64  t=0.52 s (558.7 files/s, 29979.7 lines/s)" java,./b3-eos-ws/src/main/java/com/db/data/data.java,3,0,2048 

header linux:

     100 files      200 files      300 files duplicate file check 327 files (278 known unique) unique:      100 files                                           unique:      200 files                                           counting:  100 counting:  200 counting:  300 language,filename,blank,comment,code,"http://cloc.sourceforge.net v 1.60  t=0.45 s (591.6 files/s, 34060.2 lines/s)" java,./b3-eos-ws/src/main/java/com/db/data/data.java,3,0,2048 

is there way hide lines cloc count files ? or way remove in java app ?

according man page (invaluable tool, btw) switch -q suppress intermediate output (anything summary).


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -