wc -l file

例如:

zhaogh@zhaogh-System-Product-Name: wc -l Main.cpp 
106 Main.cpp

 

统计目录所有文件行数(全部目录):

find . -name *.h | xargs wc -l

例如:

zhaogh@zhaogh-System-Product-Name: find . -name *.h | xargs wc -l
 ............

     21 ./src/Common/src/ColumnSchemaNotFoundException.h

     56 ./src/Httpd/src/MicroHttpdService.h

    146 ./src/Httpd/src/WebContext.h

     21 ./src/Httpd/src/HttpdServiceException.h

     46 ./src/TestLoader/src/TestLoaderService.h

     55 ./src/TestSQL/src/TestCaseSQLService.h

 

统计目录并按行数排序(按行大小排序):

 find . -name *.h | xargs wc -l | sort -n

zhaogh@zhaogh-System-Product-Name: find . -name *.h | xargs wc -l | sort -n
 ............

     21 ./src/Common/src/ColumnSchemaNotFoundException.h

     56 ./src/Httpd/src/MicroHttpdService.h

    146 ./src/Httpd/src/WebContext.h

     21 ./src/Httpd/src/HttpdServiceException.h

     46 ./src/TestLoader/src/TestLoaderService.h

     55 ./src/TestSQL/src/TestCaseSQLService.h

 

统计目录并按行数排序(按行文件名排序):

find . -name *.h | xargs wc -l | sort -k2

zhaogh@zhaogh-System-Product-Name:~/BDSS/Main$ find . -name *.h | xargs wc -l | sort -k2

............

     21 ./src/Common/src/ColumnSchemaNotFoundException.h

     56 ./src/Httpd/src/MicroHttpdService.h

    146 ./src/Httpd/src/WebContext.h

     21 ./src/Httpd/src/HttpdServiceException.h

     46 ./src/TestLoader/src/TestLoaderService.h

     55 ./src/TestSQL/src/TestCaseSQLService.h

  92581 总用量