The shell counts the number of files and directories in the current folder

Source: Internet
Author: User

1. Count the number of files in the current folder

Ls-l |grep "^-" |wc-l

2 . Count the number of directories under the current folder

Ls-l |grep "^d" |wc-l

3. count the number of files in the current folder, including subfolders

Ls-lr|grep "^-" |wc-l

4. The number of directories under the statistics folder, including the sub-folders

Ls-lr|grep "^d" |wc-l

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.

Reference: http://www.jb51.net/article/56474.htm

The shell counts the number of files and directories in the current folder

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.