for i in {0..300}
do
  if [ -f apbs.log.$i ]; then
      grep Global apbs.log.$i|tail -1 | awk '{print $6}'
  fi
done

