Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
878 views
in Technique[技术] by (71.8m points)

bash - Accessing environment variables that don't map to valid shell variable names

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

One unportable approach (Linux-only) is to parse /proc/self/environ:

declare -A environ
while IFS='' read -r -d ''; do
  var=${REPLY%%=*}
  val=${REPLY#*=}
  environ[$var]="$val"
done </proc/self/environ
printf '%q
' "${environ["Invalid Name"]}"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...