Count the number of files in a folder
Ls-l |grep "^-" |wc-l
Count the number of directories under a folder
Ls-l |grep "^d" |wc-l
The number of files under the statistics folder, including subfolders.
Ls-lr|grep "^-" |wc-l
The number of directories under the statistics folder, including the sub-folders.
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.
This article is from the "System website Operations" blog, please be sure to keep this source http://cgc888.blog.51cto.com/3989433/1692223
Count the number of files under the current folder under the Linux command line