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 root15g 06-04 14:35 all.txt
8.0k -rwx--x--x 1 root root632 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 drwxr-xr-x 2 root root 4.0k 06-03 19:13 lane
24k drwxr-xr-x 2 root root20k 06-04 15:03 111
3.1g -rw-r--r-- 1 root root 3.1g 06-04 15:32 sample1.txt
2.4g -rw-r--r-- 1 root root 2.4g 06-04 15:53 sample2.txt
1.4g -rw-r--r-- 1 root root 1.4g 06-04 16:11 sample3.txt
1.3g -rw-r--r-- 1 root root 1.3g 06-04 16:11 sample4.txt
4.2g -rw-r--r-- 1 root root 4.2g 06-04 14:51 22222.txt
檢視檔案大小du sh ll h
檢視資料夾總大小 root iz9488z4qfcz sztoyon du sh 974m root iz9488z4qfcz sztoyon ll h total 516m rwxrwxrwx 1 root root 23 may 25 12 32 1.php drwxrwxrwx 83 root...
linux檢視檔案大小
stat filepath xanarry thinkpad stat downloads jdk 8u60 linux x64 tar.gz file home xanarry downloads jdk 8u60 linux x64.tar.gz size 181238643 blocks 35...
linux檔案大小檢視
當我們在管理linux檔案系統的時候,我們需要檢視每個檔案的大小。本文介紹如何使用du去檢視檔案大小,如何使用sort排序,以及如何使用more控制輸出 du sh用於顯示當前目錄檔案大小。h的意思是要給輸出加單位,也就是human readable。s的意思是只顯示當前目錄,不顯示子資料夾。du ...