kerframil 1535156661 learn In an (( arithmetic context )), never reference an associative array element as foo[$bar]. Instead, write foo[\$bar], foo['$bar'] or ${foo[$bar]}. Otherwise, the expansion of $bar is repeated and is thus vulnerable to code injection. To treat $bar as a literal key name, use ${foo['$bar']}. kerframil 1535157053 forget