What's the difference between the Linux command source and executing a command directly?
-
I have a script that when I execute it, it doesn't do anything, however when I execute source (script) it works! In example - ./program # does not work source program # does work Why is this? The program only exports the PS1 env variable to change my terminal.
-
Answer:
It's likely because the file ./program is not an executable file. Depending on your http://en.wikipedia.org/wiki/Umask settings, files may or may not have the executable permission bits set upon creation. You need to set the program to be executable before you can run it. To test this, you can create a new file, for example, I created cmd_test in my home directory with the following contents: #!/bin/bash echo "It works!" Now if I run it like this, it's likely that it won't work. ./cmd_test. I got a permission denied error in stderr because it cannot be executed. To make it executable you need to do chmod +x ./cmd_test As to why this file is executed when I do source ./cmd_test is concerned, it is because bash reads the file and executes the contents of it without forking a new shell. So in order for source to work the file needs to be readable. Transcript from my command window: $ vim cmd_test # Create a new file with a simple echo statement $ ls -l cmd_test # look at it's permissions -rw-r--r-- 1 gopaladhikari staff 30B May 21 17:52 cmd_test # as you can see, it's not executable $ ./cmd_test zsh: permission denied: ./cmd_test # Permission error (no surprise here) $ source ./cmd_test It works! # Using source, it actually works. $ chmod +x ./cmd_test # Make the file executable $ ./cmd_test # Execute the file It works!
Gopal Adhikari at Quora Visit the source
Other answers
See link below for answer to this question - http://superuser.com/questions/46139/what-does-source-do Yes, I'm answering my own question! But this URI does a good job at explaining the differences, which in summary is that ./program executes the script in a new environment whereas source program executes the script in the current environment.
Charles Saag
Related Q & A:
- What's the difference between Windows vs. Linux?Best solution by techrepublic.com
- What's the difference between being a pre-pharmacy major and a pharmacy major?Best solution by answers.yahoo.com
- What's the difference between a takedown recurve bow and just a traditional recurve?Best solution by Yahoo! Answers
- What's the difference between a Game or National Park and a Game or National Reserve?Best solution by Yahoo! Answers
- For a U.S. Passport, what's the difference exactly between a passport book and a passport card?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.