Count the number of lines of code in a shell

Source: Internet
Author: User

Xcode statisticsCodeIt is very simple to use shell commands. Open the terminal, enter your project directory, and execute the following code

Find.-Name "*. m"-or-name "*. H"-or-name "*. html"-or-name
"*. C" | xargs WC-l

To collect statistics on iOS development code, including header files, run the following command:

Find.-Name "*. m"-or-name "*. H"-or-name "*. html"-or-name
"*. C" | xargs grep-V "^ $" | WC-l

  • Grep-V "^ $"Yes. Remove empty rows.
  • In addition, if more code files require statistics, you only need to insert a file similar -Or
    -Name "*. html" Replace the file suffix
  • The comments are also counted within the amount of code. After all, they are also coded by a single word.
Related Article

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.