首页 > 代码库 > df显示磁盘使用率

df显示磁盘使用率

[root@mode ~]# df -h |awk ‘NR>1{printf $5" "}‘

15% 7% 0% [root@mode ~]# df -hP

Filesystem            Size  Used Avail Use% Mounted on

/dev/sda3              19G  2.6G   16G  15% /

/dev/sda1             251M   17M  222M   7% /boot

tmpfs                 123M     0  123M   0% /dev/shm

[root@mode ~]# df -h |awk ‘NR>1{printf $5"_"}‘|sed ‘s/_$//‘

15%_7%_0%[root@mode ~]# 


本文出自 “Try to be brave” 博客,谢绝转载!

df显示磁盘使用率