shell command to see the number of files under a folder
2010-06-25 17:05:15| Category: Shell | Font size Subscription
1. View the number of files under a folder:
Ls-l |grep "^-" |wc-l or find/company-type f | Wc-l
2. Look at the number of files in a folder, including the subfolders:
Ls-lr|grep "^-" |wc-l
3. View the number of folders under a folder, including the following subfolders:
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 "^-"
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 lines, because it has been filtered to only the general file, so the statistical results are general file information of the number of lines, and because
One line of information corresponds to a file, so that is the number of files.
Reprinted from: http://blog.myspace.cn/e/401647649.htm
Shell command to see the number of files under a folder