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

How do leading e-commerce platforms achieve high ROI conversion from 0 to 1?

If I were to add a metaphor to the conversion rat...

Automobile product marketing and promotion strategy!

Cars are high-priced commodities with a long deci...

To operate a startup app, here are 7 things you need to do before launching it!

Whether it is as big as a product or as small as ...

Tongcheng SEO Training: How to design a high-end marketing website?

When an enterprise builds an adaptive marketing w...

Social marketing practice: starting from 4 aspects

This article will discuss in detail how community...

6 tips for planning a big advertising campaign

More and more brands are willing to spend a large...

How can TikTok newbies quickly increase their followers?

Video 0 playback & low playback and solutions...

Don’t ignore “visibility” when promoting product fission

Whether it is an Internet product or a consumer p...

These copywritings have made me laugh for a year

1/Milk advertisement Copywriting : If you drink a...

【2014】GitHub China Developer Annual Report

[[127178]] Produced by GitHuber.info team Preface...