View the number of files and directories under Linux

Source: Internet
Author: User

View the number of files and directories under Linux
1. View the total number of current files and directories (excluding subdirectories):
Ls-l | Wc-l

2. View the number of files in the current directory (excluding subdirectories):
Ls-l |grep "^-" |wc-l

= = = View the number of files in the current directory (including subdirectories)
LS-LR |grep "^d" | Wc-l

4. View the current directory number (including subdirectories)
LS-LR |grep "^d" | Wc-l

========================================
Show only directory names, there are spaces between grep and ^

Ls-l | grep ^

Show only files
Ls-l | grep ^-

Statistics the number of files under the can directory
Ls-l | grep ^-| Wc-l

=========================================
Ls-l
Long list output file information in this directory (note the file here, different from the general file, may be the directory, links, device files, etc.)
grep "^-"
In this case, the long list output information is filtered, only the general files are preserved, if only the directory is ^d
Wc-l
Statistics output information of the number of rows, because it has been filtered to only the general file, so the statistical results are general file information line number, and because one line of information corresponding to a file, so that is the number of files.

View the number of files and directories under Linux

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.