Count the number of files in the current folder in Linux

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 in the current folder

Ls-L | grep "^ d" | WC-l
 
3) count the number of files in the current folder, including
Ls-LR | grep "^-" | WC-l
 
4) count the number of directories in the folder, including
Ls-LR | grep "^ d" | WC-l
 
Note:
Ls-l
The long list outputs the file information in the current folder (note that the file here may be a directory, link, or device file, different from the common file)
 
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.

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.