What is the difference between a shell variable that is
exported and the one that is not exported?
Answers were Sorted based on User's Feedback
When we export the variable that will available in subshell
If simply define variable that is only available in current shell.
Example: #var=20
#echo $var
20
If you invoke #sh i.e subshell of bash and try to print that unexported variable valu you will not get that.
sh-2.05b# echo $var-----it does not print the valu of var b'caz still it is in bash shell memory.
Just see the exported variable in shell
[root@dhcppc0 root]# export var1=30
[root@dhcppc0 root]# sh
sh-2.05b# echo $var1
30
I hope you will be enjoy it.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / mrinmoy
Only exported variables can be inherited by another program
while other variables can not be used.
| Is This Answer Correct ? | 3 Yes | 0 No |
What do you understand by unix shell?
How is unix different from linux?
What is unix file?
What are the common directory management commands in unix?
What are new features added in nfs4?
What does unix like mean?
How to terminate a shell script if statement?
Explain file system in unix.
Explain what is standard unix streams ?
Describe the term inode?
What are positional parameters in unix?
What is the difference between NFS 3 and NFS 4? What are new features added in NFS4?