Allowed characters in Linux environment variable names

LinuxSyntaxEnvironment Variables

Linux Problem Overview


What characters are allowed in Linux environment variable names? My cursory search of man pages and the web did only produce information about how to work with variables, but not which names are allowed.

I have a Java program that requires an defined environment variable containing a dot, like com.example.fancyproperty. With Windows I can set that variable, but I had no luck setting it in linux (tried in SuSE and Ubuntu). Is that variable name even allowed?

Linux Solutions


Solution 1 - Linux

From The Open Group:

> These strings have the form > name=value; names shall not contain > the character '='. For values to be > portable across systems conforming to > IEEE Std 1003.1-2001, the value shall > be composed of characters from the > portable character set (except NUL > and as indicated below).

So names may contain any character except = and NUL, but:

> Environment variable names used by the utilities in the Shell and > Utilities volume of IEEE Std > 1003.1-2001 consist solely of uppercase letters, digits, and the '_' > (underscore) from the characters > defined in Portable Character Set and > do not begin with a digit. Other > characters may be permitted by an > implementation; applications shall > tolerate the presence of such names.

So while the names may be valid, your shell might not support anything besides letters, numbers, and underscores.

Solution 2 - Linux

The POSIX standards on shells section of IEEE Std 1003.1-2008 / IEEE POSIX P1003.2/ISO 9945.2 Shell and Tools standard doesn't define the lexical convention for variable names, however a cursory look at the source reveals it uses something similar to

[a-zA-Z_]+[a-zA-Z0-9_]*

(Edit: Added missing underscore in 2nd character class.)

A quick note, as some shells don't support the + in regex, a potentially more portable regex may be:

[a-zA-Z_]{1,}[a-zA-Z0-9_]{0,}

Solution 3 - Linux

My quick testing showed that they basically follow the same rules as C variable names do have, namely

  1. a-z, A-Z, _ and 0-9
  2. May NOT begin with a number

So this excludes . inside them. Any illegal variable name is credited with unknown command.

This was tested in ZSH, which is mostly BASH-compatible.

Solution 4 - Linux

YES, YOU CAN DO IT.

Use exec and env command to implement this scene.

Test Fixture in Docker

docker run -it --rm alpine:3.10

Run command in container:

exec env spring.application_name=happy-variable-name ${SHELL:-/bin/sh}

Verify environment variables:

HOSTNAME=bd0bccfdc53b
SHLVL=2
HOME=/root
spring.application_name=happy-variable-name
TERM=xterm
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PWD=/

Use ps aux to verify PID not changed

PID   USER     TIME  COMMAND
    1 root      0:00 /bin/sh
   12 root      0:00 ps aux

Use python to verify environemnt variable

apk add python
python -c 'import os; print(os.environ["spring.application_name"])'

OUTPUT is happy-variable-name.

What happen?

  1. Shell call builtin exec
  2. Shell builtin exec call syscall.exec create process 'env' to replace current shell
  3. env process call syscall.execvp create process '/bin/sh' to replace env process

Another way

  • Docker image

If you are using docker, you can set variable in Dockerfile

FROM busybox
ENV xx.f%^&*()$#ff=1234
  • Kubernetes configmap

If you are using kubernetes, you can set variable by ConfigMap

test.yaml

apiVersion: v1
kind: ConfigMap
metadata:
  name: foo-config
data:
  "xx.ff-bar": "1234"

---
apiVersion: v1
kind: Pod
metadata:
  name: foobar
spec:
  containers:
    - name: test-container
      image: k8s.gcr.io/busybox
      command: [ "/bin/sh", "-c", "env" ]
      envFrom:
      - configMapRef:
          name: foo-config
  restartPolicy: Never

Deploy pod kubectl apply -f test.yaml

Verify kubectl logs foobar output:

xx.ff-bar=1234

ConfigMap allow '-', '_' or '.'

Solution 5 - Linux

Depends on what you mean by 'allowed'.

Ignoring Windows for the nonce:

The environment is an array of strings, passed to the main function of a program. If you read execve(2), you will see no requirements or limits on these strings other than null-termination.

By convention, each string consists of NAME=value. There is no quoting convention, so you can't have an '=' in the name in this convention.

Normal humans set these strings by discussing them with their shell. Each shell has it's own ideas of what are valid variable NAMEs, so you have to read the man page for the shell-of-the-moment to see what it thinks.

Generally, things like com.baseball.spit=fleagh are Java system properties, and whether or not some Java program is willing to fall back to the environment, it's better to specify them with -D.

Solution 6 - Linux

It depends on the shell. I'm guessing you're using bash by default, in which case letters, numbers and underscores are allowed, but you can't start the variable name with a number. As of Bash v.3, periods are not allowed within variable names.

Solution 7 - Linux

While most shell will not allow setting enviroment variables (as mentioned in other answers), if you have need you can execute other programs with nonstandard enviroment variables using env(1).

For example, erasing all enviroment and setting Strange.Env:Var to value foo, and executing perl program that prints it:

env -i Strange.Env:Var=foo perl -MData::Dumper -E 'say Dumper(\%ENV)'

will print

$VAR1 = {
          'Strange.Env:Var' => 'foo'
        };

Solution 8 - Linux

While editing systemd service vars with systemctl edit <service_name> I can use all symbols excluding " = \ $ like:

[Service]
Environment="TOKEN=~'+*^,j-;H@[J;;G,g&xG:eH)RfK@I&fjjgdZ|IXKm]-[C"

And this works without problems.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionChristian SemrauView Question on Stackoverflow
Solution 1 - LinuxRobert GambleView Answer on Stackoverflow
Solution 2 - LinuxAiden BellView Answer on Stackoverflow
Solution 3 - LinuxLukeNView Answer on Stackoverflow
Solution 4 - LinuxZealicView Answer on Stackoverflow
Solution 5 - LinuxbmarguliesView Answer on Stackoverflow
Solution 6 - Linuxire_and_cursesView Answer on Stackoverflow
Solution 7 - LinuxMatija NalisView Answer on Stackoverflow
Solution 8 - LinuxArtem S. ZhelonkinView Answer on Stackoverflow