What is the difference between a shell variable that is
exported and the one that is not exported?
Answer Posted / mahendra swain
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 |
Post New Answer View All Answers
Explain piping.
What is the ‘nohup’ in unix?
What is a parent directory in unix?
What is the difference between an absolute path and a relative path in unix?
Differentiate relative path from an absolute path?
Why unix is secure than windows?
What are special characters in unix?
Is mac built on unix?
How is unix different from other operating system?
List a few significant features of unix?
What is unix kernel explain it?
What are new features added in nfs4?
In what way the protection fault handler concludes?
How to null a file in unix?
What is the procedure to configure MC/SG Cluster services in HP-UX 11i v3 OS Environment?