View the number and size of files in linux

Source: Internet
Author: User

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 \ "^ -\"

[Note] \ '-\' is a minus sign rather than an underscore !!!

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.

 

View the folder size in Linux

View the current folder size in Du-SH
Du-sh * | sort-N: Count the current folder (directory) size and sort by file size
Du-SK filename: view the specified file size

Related Article

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.