1、命令简介
du (Disk usage) 用来计算每个文件的磁盘用量,目录则取总用量。
2、用法
用法:du [选项]... [文件]... 或:du [选项]... --files0-from=F
3、选项
4、示例
示例1:显示单个文件的大小(默认为k)
[[email protected] alertscripts]# du sendim.py 4 sendim.py
示例2:以人性化的方式显示文件大小
[[email protected] alertscripts]# du -h sendim.py 4.0K sendim.py
示例3:-k以单位显示文件大小
[[email protected] alertscripts]# du -k sendim.py 4 sendim.py
示例4:-s选项 sum求和
[[email protected] ~]# du -sh ./ 1.6M ./
示例5:输出当前目录下各个子目录所使用的空间
[[email protected] ~]# du --max-depth=1 4 ./模板 120 ./.gconfd 28 ./.gnome2 4 ./图片 284 ./.gconf 4 ./文档 4 ./公共的 4 ./dir1 4 ./音乐 4 ./.abrt 4 ./视频 384 ./.gstreamer-0.10 16 ./.gnote 184 ./.cache 16 ./.gnupg 4 ./下载 148 ./.pulse 40 ./.config 12 ./.dbus 24 ./study 148 ./.local 4 ./.gvfs 4 ./.nautilus 8 ./.ssh 12 ./桌面 1620 .
时间: 2024-10-29 19:06:04