?? ndu
字號:
for dir in ${*:-.}; do if [ -e $dir ]; then result=$(du -s $dir | cut -f 1) let total=$result*1024 echo -n "Total for $dir = $total bytes" if [ $total -ge 1048576 ]; then echo " ($((total/1048576)) Mb)" elif [ $total -ge 1024 ]; then echo " ($((total/1024)) Kb)" fi fidone
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -