Call one shell script from another script using relative paths
I have a script like this:
#!/bin/csh
echo "This is the main programme"
./printsth
I want to call the script printsth
from within this script using relative paths. Is there a way to do so? By relative paths I mean path relative to where my calling script is.
You can refer to the current working directory with $cwd
. So if you want to call printsth
with a path relative to the current working directory, start the line with $cwd
.
For example, if you want to call the printsth
in the current directory, say:
$cwd/printsth
If you want to call the printsth
one directory above:
$cwd/../printsth
Be sure it's a csh
script though (ie. the first line is #!/bin/csh
). If it's an sh
or bash
script, you need to use $PWD
(for 'present working directory'), not $cwd
.
EDIT:
If you want a directory relative to the script's directory, not the current working directory, then you can do this:
setenv SCRIPTDIR `dirname $0`
$SCRIPTDIR/printsth
That will set $SCRIPTDIR
to the same directory as the original script. You can then build paths relative to that.
Running script as ./printsth
won't work always, as relative path would depend on directory from which the main script has been run.
One solution would be to make sure that we enter the directory where the script is present, then run it:
cd -P -- "$(dirname -- "$0")"
./printsth
For more examples, see: How to set current working directory to the directory of the script?
See also: How to convert absolute path into relative path?
链接地址: http://www.djcxy.com/p/56782.html