Most languages have naming conventions for variables, the most common style I see in shell scripts is MY_VARIABLE=foo
. Is this the convention or is it only for global variables? What about variables local to the script?

- 742

- 5,281
3 Answers
Environment variables or shell variables introduced by the operating system, shell startup scripts, or the shell itself, etc., are usually all in CAPITALS
1.
To prevent your variables from conflicting with these variables, it is a good practice to use lower_case
variable names.
1A notable exception that may be worth knowing about is the path
array, used by the zsh
shell. This is the same as the common PATH
variable but represented as an array.

- 333,661

- 14,086
-
60
-
13@GarrettHall That's entirely up to you. Once you pick one stick with it. Consistency is more important than the actual choice. – jw013 Jul 11 '12 at 20:57
-
6matter of taste? I personally like the C-style
camelCase
because it is shorter and doesn't use the ugly underscore. Taste, style, ... – jippie Jul 11 '12 at 20:57 -
44matter of taste? I personally like underscore separated, easier to read. – janos Jul 12 '12 at 08:22
-
9For completeness, environment variables aren't the only category of conventionally all-uppercase shell variable names -- this rule also applies to builtins (like
PWD
,PS4
, orBASH_SOURCE
). – Charles Duffy Jan 07 '15 at 23:49 -
@GarrettHall What I do is this plus
CamelCase
forlocal
variables that I exclusively allow to be referenced inside child functions--when I do allow that. Just a convention, but helps keep scopes clean. – Alois Mahdal May 18 '16 at 19:27 -
@jippie code in python and underscore won't be ugly to you anymore – Nic Szerman Jul 30 '21 at 12:16
Yes, there are full code style conventions for bash, including variable names. For example, here's Google's Shell Style Guide.
As a summary for the variable names specifically:
Variable Names: Lower-case, with underscores to separate words. Ex:
my_variable_name
Constants and Environment Variable Names: All caps, separated with underscores, declared at the top of the file. Ex:
MY_CONSTANT
-
17These convention are only Google ones for their own open source projects: though they could be very good rules, it could not apply to all projects. – smonff Feb 04 '17 at 14:16
Underscores to separate words seem to be the best way to go.
I have a few reasons to prefer snake_case over camelCase when I'm free to choose:
- Flexible: You can use upper case and lower case (e.g.
MY_CONSTANT
andmy_variable
); - Consistent: The digits can be separated to make the number more readable (e.g.
1_000_000_000
) and this feature is supported in many programming languages; - Common: Common at the point the regex
\w
handles underscores like word characters and numbers ([a-zA-Z0-9_]
).

- 191
-
3I believe we should steer clear of attempts to rationalize stylistic decisions (or opinions in general) because the rationale is usually tenuous and can swing either way with little effort. (Also, it polarizes people, often inciting religious wars and time wasted on immaterial issues.) Specifically in re: your reasons,
camelCase
does not preclude #2, and #3 is trivially mitigated by considering capitals as additional word boundaries. Re: #1, there is no reason whyLOUD_SNAKE
can't be used withcamelCase
—that is a common combination, the former often being for constants/globals. – Ezekiel Victor Mar 31 '23 at 02:01
PATH
orHOME
or anything else the shell might reserve in the future. – jw013 Jul 11 '12 at 20:53