Ls-l |grep "^-" |wc-l//verified Redhat easy to use
Or
Find./company-type F | Wc-l
View the number of files under a folder, including the subfolders.
Ls-lr|grep "^-" |wc-l
View the number of folders under a folder, including those in 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.
L
Linux View folder size
Du-sh viewing the current folder size
Du-sh * | Sort-n Statistics the current folder (directory) size and sort by file size
Du-sk filename View specified file size
Number of files under Linux View folder (number of files in the current directory)//include subdirectories