17
4
What is the difference between set
, env
, declare
and export
when setting a variable in a Linux shell, such as bash
?
17
4
What is the difference between set
, env
, declare
and export
when setting a variable in a Linux shell, such as bash
?
5
It seems that set and declare are slightly different, with set being more powerful.
See "declare" under https://www.gnu.org/software/bash/manual/bash.html#Bash-Builtins declare: "Declare variables and give them attributes. If no names are given, then display the values of variables instead.
Set "set" under https://www.gnu.org/software/bash/manual/bash.html#The-Set-Builtin * set: "This builtin is so complicated that it deserves its own section. set allows you to change the values of shell options and set the positional parameters, or to display the names and values of shell variables."
ENV is an environment variable in Bash: https://www.gnu.org/software/bash/manual/bash.html#Bash-Variables env is a Linux command. I think this is a good reference: https://unix.stackexchange.com/questions/103467/what-is-env-command-doing
I thought this was a good explanation of export: http://www.unix.com/302531838-post2.html
Also: https://www.gnu.org/software/bash/manual/bash.html#Bourne-Shell-Builtins * export (from Bourne): "Mark each name to be passed to child processes in the environment."
Borrowing code from URL above:
root@linux ~# x=5 <= here variable is set without export command
root@linux ~# echo $x
5
root@linux ~# bash <= subshell creation
root@linux ~# echo $x <= subshell doesnt know $x variable value
root@linux ~# exit <= exit from subshell
exit
root@linux ~# echo $x <= parent shell still knows $x variable
5
root@linux ~# export x=5 <= specify $x variable value using export command
root@linux ~# echo $x <= parent shell doesn't see any difference from the first declaration
5
root@linux ~# bash <= create subshell again
root@linux ~# echo $x <= now the subshell knows $x variable value
5
root@linux ~#
declare
and set
and env
? export vs declare? – Pacerier – 2017-11-01T19:52:22.597
I got to downvote this because it's simply not answering the question. – Daniel C. Sobral – 2018-06-11T17:23:30.363
Let me know if this is any better. – Shawn P. – 2018-09-04T15:21:33.313
1
First, you must understand that environment variables
and shell variables
are not the same thing.
Then, you should know that shells have attributes which govern how it works. These attributes are not environment nor shell variables.
Now, on to answering your question.
env
: without any options, shows current environment variables with their values; However can be used to set environment variable for a single command with the -i
flagset
: without options, the name and value of each shell variable are displayed* ~ from running man set
in rhel; can also be used to set shell attribute. This command DOES NOT set environment nor shell variable. declare
: without any options, the same as env
; can also be used to set shell variableexport
: makes shell variables environment variablesIn short:
set
doesn't set shell nor environment variablesenv
can set environment variables for a single commanddeclare
sets shell variablesexport
makes shell variables environment variablesNOTE
declare -x VAR=VAL
creates the shell variable and also exports it, making it environment variable.
1Why was this question voted down? – l0b0 – 2014-11-21T15:45:10.640