Contents of runcalc3.msh
I want to get the contents of runcalc3.ksh in a variable in such a way that
I get the value of ess_app and ess_db also which is set in another shell script.
I tried using this in unix
. It does not work.
It gives me
But I want
execute calculation am.bd.zap_data;
where ess_app='am'
ess_db='bd"
Any help will be appreciated.
Kuntal
Code:
execute calculation $ess_app.$ess_db.zap_data;
I get the value of ess_app and ess_db also which is set in another shell script.
I tried using this in unix
Code:
export test="$(<runcalc3.msh)"
test1=`echo $(echo $test)`
echo $test1
It gives me
Code:
execute calculation $ess_app.$ess_db.zap_data;
execute calculation am.bd.zap_data;
where ess_app='am'
ess_db='bd"
Any help will be appreciated.
Kuntal