I'm trying to figure out how to sanely and portably (as much as possible) deal with environment variables with names that don't map to valid shell variables. It is critical that results be byte-for-byte accurate, so I'm unwilling to go through hacks such as parsing the output of the env
tool.
env 'Invalid Name=Some Value' bash <<'EOF'
s='Invalid Name'
printf '%q
' "${!s}"
EOF
I would hope that the above code would emit Some Value
; instead, however, it returns an empty string.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…