I have the following files
build.sh
source exportpath.sh
exportpath.sh
export LD_LIBRARY_PATH=/usr/local/lib/
But,when I am executing this build.sh and then running the echo $LD_LIBRARY_PATH
command I am not able to get the LD_LIBRARY_PATH
value. How to set this value to the current shell
.
I found that we have to source
it in the current shell. But I want it done by a shell script.
When I am using source exportpath.sh
in current shell, then my LD_LIBRARY_PATH
is working but I want this should be done by a shell script.
How can I do this?