标签:df -h 挂载 int centos group mnt cal awk PFS
[root@localhost ~]#cd /[root@localhost /]# df
文件系统 1K-块 已用 可用 已用% 挂载点
/dev/mapper/centos-root 17811456 8321620 9489836 47% /
devtmpfs 917532 0 917532 0% /dev
tmpfs 933512 0 933512 0% /dev/shm
tmpfs 933512 17512 916000 2% /run
tmpfs 933512 0 933512 0% /sys/fs/cgroup
/dev/sda1 1038336 182584 855752 18% /boot
tmpfs 186704 28 186676 1% /run/user/1000
tmpfs 186704 48 186656 1% /run/user/0
/dev/sr0 4414592 4414592 0 100% /mnt
[root@localhost /]# df -h|awk ‘NR==2{print $5}‘
47%
[root@localhost /]# root_disk=$(df -h|awk ‘NR==2{print $5}‘)
[root@localhost /]# echo $root_disk
47%
查看根分区大小,并取出根分区使用率赋值给root_disk变量。
标签:df -h 挂载 int centos group mnt cal awk PFS
原文地址:http://blog.51cto.com/13859004/2144644