Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between launching a script with ./script.sh and . ./script.sh

Please tell me what is the difference in bash shell between launching a script with ./script.sh and . ./script.sh?

like image 221
Sachin Chourasiya Avatar asked Dec 10 '09 12:12

Sachin Chourasiya


2 Answers

As klausbyskov says, the first form requries that the file have its executable permission bit set.

But more importantly, the first form executes the script in a separate process (distinct from, independent of, and unable to make changes in the shell that launched it). The second form causes the initial shell to directly run the commands from the file (as if you had typed them into the shell, or as if they were included in the script that does the ‘sourcing’).

A script that contains FOO=bar; export FOO will have not create an exported FOO environment variable in the shell that runs the first variant, but it will create such a variable in a shell that runs the second variant.

The second form (‘sourcing’) is a bit like a #include in C.

like image 126
Chris Johnsen Avatar answered Sep 25 '22 03:09

Chris Johnsen


The first requires the file to have the +x flag set. The second uses the . command aka "source", described here.

like image 40
Klaus Byskov Pedersen Avatar answered Sep 24 '22 03:09

Klaus Byskov Pedersen