Linux Command to view the number of files in a folder
Source: Internet
Author: User
Linux Command to view the number of files in a folder-general Linux technology-Linux programming and kernel information. The following is a detailed description. View the number of files in a folder
Ls-l | grep "^-" | wc-l
Or
Find./company-type f | wc-l
View the number of files in a folder, including files in subfolders.
Ls-lR | grep "^-" | wc-l
View the number of folders in a folder, including those in subfolders.
Ls-lR | grep "^ d" | wc-l
Note:
Ls-l
Long list output file information under this directory (note that the files here, unlike general files, may be directories, links, device files, etc)
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 filtered out, the statistical result is the number of rows of general files.
A row of Information corresponds to a file, which is the number of files.
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.