shell – 管道中变量的范围

前端之家收集整理的这篇文章主要介绍了shell – 管道中变量的范围前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果使用率超过10%,以下shell脚本将检查磁盘空间并将变量diskfull更改为1
最后一个回显总是显示0
我在if子句中尝试了全局diskfull = 1但它没有用.
如果消耗的磁盘超过10%,如何将变量更改为1?
  1. #!/bin/sh
  2. diskfull=0
  3.  
  4. ALERT=10
  5. df -HP | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;
  6. do
  7. #echo $output
  8. usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
  9. partition=$(echo $output | awk '{ print $2 }' )
  10. if [ $usep -ge $ALERT ]; then
  11. diskfull=1
  12. exit
  13. fi
  14. done
  15.  
  16. echo $diskfull
使用管道时,外壳接缝使用子外壳来完成工作.由于这些子shell不知道$diskfull,因此永远不会更改该值.

看到:
http://www.nucleardonkey.net/blog/2007/08/variable_scope_in_bash.html

修改了你的脚本如下.它适用于我,也应该适用于您的系统.

  1. #!/bin/sh
  2. diskfull=0
  3.  
  4. ALERT=10
  5. stats=`df -HP | grep -vE '^Filesystem|tmpfs|cdrom|none|udev' | awk '{ print $5 "_" $1 }'`
  6. for output in $stats
  7. do
  8. usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
  9. partition=$(echo $output | sed s/.*_// )
  10. #echo $partition - $usep
  11. if [ $usep -le $ALERT ]; then
  12. diskfull=1
  13. break
  14. fi
  15. done
  16. echo $diskfull

猜你在找的Bash相关文章