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

来源:互联网 发布:上海银行淘宝金卡年费 编辑:程序博客网 时间:2024/05/01 01:07

#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


0 0
原创粉丝点击