I'm getting an issue with this code below, set -x is telling me that the variables ARE being assigned, but trying to echo them outside of this loop does not seem to be working?
          export "ex_$x"=$(git rev-parse HEAD | cut -c1-10)
      done
    ((used++))
    echo $ex_render
    echo $ex_storage
    exit # =/
    php -f "${cdir}/../public/bootstrap.php" -- "${line}" "${ex_render}" "${ex_storage}"
 
    