I am tryin to insert 3 variables to build a path, but unable to get it .
I am trying the below
log_path="/vol02/logs/$dname/logs/103602_$msname/${msname}_start.log"
dname=cfp
msname=cfp003
i get the below output.
_start.logs/cfp/logs/103602_cfp003
I need
/vol02/logs/cfp/logs/103602_cfp003/cfp003_start.log
dname
andmsname
declarations before thelog_path
declaration, or use single quotes for thelog_path
declaration. – muru Apr 22 '15 at 18:26