I searched answer on my question, but just found some complex scripts.
I'm trying to configure some software. I have *.cmd file with expression:
SET SPARK_DIST_CLASSPATH={hadoop classpath}
But using just brackets around expression I can't get result as concatenated paths with libs. In Linux, I can replace this expression with
EXPORT SPARK_DIST_CLASSPATH=${hadoop classpath}
and all works fine.
Is it possible to achive the same behaviuor from Windows script in this particular case?