Possible Duplicate:
what is the difference between “./somescript.sh” and “. ./somescript.sh”
Please clarify the difference between the shell commands . script.sh vs ./script.sh where script.sh is a shell script.
Thanks
Please clarify the difference between the shell commands . script.sh vs ./script.sh where script.sh is a shell script. Thanks |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
The difference is simple
executes the shell script using your current shell, so all changes you do in the script (like change directory or variables) will affect your running shell
on the other hand will start a new shell to execute the script. It is usually the better way to launch scripts |
|||
|
|
|
To add to the answer given by Fabian above, You can test it by seeing the output of
before and after executing the Also, when you use whereas with |
||||
|
|