One line of command to count the total number of lines of iOS project code

One line of command to count the total number of lines of iOS project code

Sometimes we want to count the total number of lines of code in our project to gain a sense of accomplishment or for other purposes. Here are some easy ways to count the number of lines of code. It is very simple. The method is as follows:

[[210580]]

1. Open the terminal;

2. Use the cd command to reach our project file. Note that if we want to avoid counting the amount of code in the referenced third-party library, we need to go further into the code file we wrote ourselves, which is usually a file with the same name as the project file;

3. Count the number of code lines:

If you want to list the number of lines in each file, enter the command:

  1. find.- name "*.m" - or - name "*.h" - or - name "*.xib" - or - name "*.c" |xargswc-l

If you want to list the total number of code lines directly, enter the command:

  1. find.- name "*.m" - or - name "*.h" - or - name "*.xib" - or - name "*.c" |xargsgrep-v "^$" |wc-l

In this way, you can get the quantity directly, and it is very fast. Isn’t it convenient?

This counting process will remove blank lines, but comments will be counted.

<<:  [Special Topic] The 11th issue of the Aiti Tribe Technical Clinic: How to check 30 million data in seconds

>>:  Some experiences and summaries of hybrid APP cross-platform development in 2017-2018

Recommend

Tips for setting up a Toutiao advertising promotion account!

The information flow of Toutiao is becoming more ...

Microsoft's high-tech HoloLens: Will it take over AR after VR?

The three-day E3 gaming expo in the United States ...

Practical! Keep this guide to avoid scams during the May Day holiday

Have you ever encountered the traps of holiday tr...

How does bidding reduce costs? Bidding promotion method to reduce costs!

Some time ago, someone asked the editor in the gr...

Internet advertising promotion planning methods!

What is planning? Planning is to simplify complex...

The next wave of entertainment: Changhong naked-eye 3D TV mobile phone

With the development of mobile Internet and the c...

IEA report: China’s roadmap for carbon neutrality in the energy sector

Over the past four decades, China’s remarkable ec...

iOS8 hidden feature: Unicom version of iPhone 5 uses Telecom 3G

Apple released iOS8 Beta1 in the early morning of ...