Please mention sample code to call or run another script function from different scripts. (Given the Bash shell.)
|
|
There are a couple of ways you can do this:
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. |
|||||
|
|
Check this out.
|
||||
|
|
|
In bash it should be as simple as doing the following:
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. |
|||||
|