Llinux ls statistics file count

Source: Internet
Author: User

Count the number of files in a folder
Ls-L | grep "^-" | WC-l

Count the number of directories in a folder
Ls-L | grep "^ d" | WC-l

Count the number of files in the folder, including
Ls-LR | grep "^-" | WC-l

For example, to count all JS files under the/home/Han directory (including subdirectories:
Ls-LR/home/Han | grep JS | WC-l or LS-l "/home/Han" | grep "JS" | WC-l

Count the number of directories in the folder, including
Ls-LR | grep "^ d" | WC-l
Note:
Ls-LR
Long list output file information in this directory (r indicates the sub-directory. Note the files here. Different from common files, such as directories, links, and device files)

Grep "^ -"
Here, the output information of the long list is filtered out, and only general files are retained. If only directories are retained, ^ d is used.

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


==============================================
If you only want to view folders
Ls-D can only display one.
Find-type D. You can see the subfolders.

Ls-lf | grep/or LS-L | grep '^ d'. Only the folders in the current directory are displayed, excluding the following folders.

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.