linux统计某种⽂件⼤⼩命令,linux命令怎么统计⽂件的⼤⼩使⽤du 命令可以查看⽂件⼤⼩
linux命令查看文件夹大小du -h xxx 可以查看单个⽂件夹的⼤⼩
du -h xxx xxx xxx 可以分别查看多个⽂件的⼤⼩
du -h /xxxx 分别列出整个⽂件夹下 所有⽂件的⼤⼩
du -sh /xxxx 统计整个⽂件夹的⼤⼩
以du -sh 查看当前⽂件夹⼤⼩为例
du -sh * | sort -n 统计当前⽂件夹(⽬录)⼤⼩,并按⽂件⼤⼩排序
附送:
du -sk filename 查看指定⽂件⼤⼩
Linux:ls以K、M、G为单位查看⽂件⼤⼩
Linux:ls以K、M、G为单位查看⽂件⼤⼩。
#man ls
……
-h, --human-readable
print sizes in human readable format (e.g., 1K 234M 2G)
……
# 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
[root@localhost rice_f2]# ls -lhs
总计 28G
15G -rw-r--r-- 1 root root 15G 06-04 14:
8.0K -rwx--x--x 1 root root 632 06-04 15:57 hash.pl 371M -rw-r--r-- 1 root root 371M 06-03 18:06 1.fa 360M -rw-r--r-- 1 root root 359M 06-03 18:07 2.fna 8.0K
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论