How does Linux use a command line to count the number of subdirectories in a given directory

Source: Internet
Author: User

View the number of files in a directory

ls-l |grep "^-" |wc-l

or

find./company-type F | wc-l

View the number of files in a directory, including subdirectories.

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

View the number of directories under a folder, including those in subdirectories.

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

Description:

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 "^-"

This will be the long list outputInformation filteringpart, only keep the general file, if only keep 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.

How does Linux use a command line to count the number of subdirectories in a given directory

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.