Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please mention sample code to call or run another script function from different scripts. (Given the Bash shell.)

share|improve this question
Can you give some specifics: which OS and which shell(s) or are you just talking about that problem in principle?? Example code would be helpful as well. – jsalonen Dec 2 '11 at 7:07

3 Answers

There are a couple of ways you can do this:

  1. The first is to make the other script executable, add the #!/bin/bash line at the top, and add it to the $PATH variable. Then you can can call it as a normal command.

  2. Call it with the source command (alias is .) like this: source /path/to/script.

  3. Use the bash command to execute it: /bin/bash /path/to/script.

The first and third methods executes the script as another process, so variables and functions in the other script will not be accessible. The second method executes the script in the first scripts process, and pulls in variables and functions from the other script so they are usable from the calling script.

share|improve this answer
1  
remember to chmod a+x /path/to/file or else it's not going to be executable. Only applies to the ./script method. – Nathan Lilienthal Mar 1 at 19:56

Check this out.

#!/bin/bash
echo "This script is about to run another script."
sh ./script.sh
echo "This script has just run another script."
share|improve this answer

In bash it should be as simple as doing the following:

#!/bin/bash
echo "This script is about to run another script."
exec "/full/path/to/another/script.sh"
echo "This script has just run another script."

If that doesn't work please provide further details about your operating environment and any other relevant information, such as errors encountered when trying the code above.

share|improve this answer
2  
Don't use exec. exec replaces the current program (this script) with the script being called. The last echo will never be reached. See this: tldp.org/LDP/abs/html/internal.html#EX54 – Chris Dec 2 '11 at 7:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.