Linux WC file statistics

Source: Internet
Author: User

Original article link

How to count the number of files in a directory andCodeCommand for the total number of lines

Command to know the total number of objects with the specified Suffix:
Find.-Name "*. cpp" | WC-l
Know the total number of lines of code in a directory and the number of lines of a single file:
Find.-Name "*. H" | xargs WC-l

Linux statistics on the number of files in the folder

Method 1:
Ls-L | grep "^-" | WC-l

The LS-l long list outputs the file information under this directory (note that the file here may be a directory, link, or device file, different from the common file ). If LS-LR | grep "^-" | WC-L is used, the files in the subdirectories can be counted together.

Grep ^-here, a part of the output information of the long list is filtered out, and only the general files are retained. If only the directory is retained, it is ^ d.

WC-l counts the number of rows of output information. Because only common files are available, the statistical result is the number of rows of general files, that is, the number of files.

Method 2:
Find./-type F | WC-l

By default, find will go to the subdirectory to search for files in the current directory.Find./-maxdepth 1-type F | WC-lYou can.

Note that the second method is much faster than the first method, especially when the sub-directories are also counted.

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.