歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> du :Disk Usage 命令

du :Disk Usage 命令

日期:2017/2/28 16:11:09   编辑:Linux教程

內容簡介:文章專門介紹的命令du,是Disk Usage命令的首字母縮寫。
常用的有:

du -a
du -h
du -s
du -S

等。

du is a disk usage command allows you to easily know file and directory sizes, also you can view file and directory sizes decreasing starting by biggest file, otherwise increasing by smallest file.

Here’re a few basic du commands frequently used.

du -a

du –all shows all files and directories included in currently opening directory.

du -h

du –human-readable views file and directory sizes with readable by human in KB, MB, and GB.

du -s

du –summarize display only a total for each argument.

du -S

du -separate-dirs command don’t include sub-directories sizes.

du --time

Shows the last time modifications for each file, directory and sub-directories as well.

Check more du commands by typing

du --help

Few du advanced commands

Search current directory and sub-directories for biggest files

find -type f -exec du -sh {} + | sort -rh | head

Shows file, directory and sub-directory sizes including hidden files with increase sorting.

du -sk .[!.]* *| sort -n

Shows file, directory and sub-directory sizes including hidden files with decrease sorting.

du -sk .[!.]* *| sort -nr
Copyright © Linux教程網 All Rights Reserved