teddysun / across

Across the Great Wall we can reach every corner in the world
https://teddysun.com
Apache License 2.0
4.97k stars 2.22k forks source link

bench.sh统计硬盘容量BUG #26

Closed wsk170 closed 6 years ago

wsk170 commented 6 years ago

我在Vultr的VPS上搭了一个debian的系统。 df 命令里有udev的字段,但是我看了下脚本的代码没有过滤掉。 显示是这样的:

image

自己添加了过滤udev字段后,显示正常。 disk_size1=($( LANG=C df -hPl | grep -wvE '-|none|tmpfs|devtmpfs|by-uuid|chroot|Filesystem|udev' | awk '{print $2}' )) disk_size2=($( LANG=C df -hPl | grep -wvE '-|none|tmpfs|devtmpfs|by-uuid|chroot|Filesystem|udev' | awk '{print $3}' ))

image
teddysun commented 6 years ago

Fixed. Thanks for your feedback.