|
In ksh, create one file called set_up_paths with two lines:
inputpath=/some/path
outputpath=/some/other/path
Then each script will source the file with:
. /home/project/set_up_paths
and then each script just uses the variables instead of the hard coded paths.
|