Code for counting the number of lines of code in Linux

Source: Internet
Author: User

Number of statistics file rows (single file):

Wc-l file

For example:
homer@ubuntu:~/workspace/android/game$ wc-l Lgameandroid2dactivity.java
906 Lgameandroid2dactivity.java

Statistics directory of all file rows (all directories):

Find. -name *.java | Xargs wc-l

For example:

homer@ubuntu:~/workspace/android$ find. -name *.java | Xargs wc-l
817./game/core/lhandler.java
140./game/core/lflicker.java
...
515./game/utils/collection/arraymap.java
162./game/utils/collisionutils.java
178./game/utils/numberutils.java
68753 Total

Statistics directory and sorted by number of rows (sorted by row size):

Find. -name *.java | Xargs Wc-l | Sort-n

homer@ubuntu:~/workspace/android$ find. -name *.java | Xargs Wc-l | Sort-n
/game/action/sprite/collidable.java
/game/core/graphics/component/collisionquery.java
/game/core/graphics/filter/imagefilter.java
/game/lmode.java
...
1467./game/core/geom/path2d.java
1919./game/core/graphics/screen.java
2417./game/core/graphics/device/lgraphics.java
3050./game/core/geom/affinetransform.java
68753 Total

Statistics directory and sorted by number of rows (sorted by row file name):

Find. -name *.java | Xargs Wc-l | Sort-k2

homer@ubuntu:~/workspace/android$ find. -name *.java | Xargs Wc-l | Sort-k2
210./game/action/actioncontrol.java
116./game/action/actionevent.java
/game/action/actionlistener.java
....
178./game/utils/numberutils.java
342./game/utils/recordstoreutils.java
/game/utils/screenutils.java.
650./game/utils/stringutils.java
68753 Total

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.