码迷,mamicode.com
首页 > 系统相关 > 详细

Linux查看文件和文件夹大小

时间:2015-05-16 14:58:15      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:


Linux查看文件和文件夹大小

 

1、du -sh 查看当前文件夹大小

du -sh * | sort -n 统计当前文件夹(目录)大小,并按文件大小排序

附送:
du -sk filename 查看指定文件大小


2、 Linux:ls以K、M、G为单位查看文件大小

#ls -lhs

举例比较:

# ls
cuss.war nohup.out

# ls -l
total 30372
-rw-r--r-- 1 root root 31051909 May 24 10:07 cuss.war
-rw------- 1 root root 0 Mar 20 13:52 nohup.out

# ls -lh
total 30M
-rw-r--r-- 1 root root 30M May 24 10:07 cuss.war
-rw------- 1 root root 0 Mar 20 13:52 nohup.out

# ll -h
total 30M
-rw-r--r-- 1 root root 30M May 24 10:07 cuss.war
-rw------- 1 root root 0 Mar 20 13:52 nohup.out

# ls -lhs
总计 28G
15G -rw-r--r-- 1 root root 15G 06-04 14:35 all.txt
8.0K -rwx--x--x 1 root root 632 06-04 15:57 hash.pl


Linux查看文件和文件夹大小

标签:

原文地址:http://my.oschina.net/phacks/blog/415678

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!