标签:cmd
[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” 博客,谢绝转载!
标签:cmd
原文地址:http://0487561.blog.51cto.com/7160047/1591396