我有以下KornShell(ksh)脚本:
VAR='/this/is/a/path/'
DAT='01_01_2014'
cat << EOF
... what should I do here to concat variables with strings? ...
$VARfoldername$DAT
EOF
Howerver,这只给了我(因为变量$ VARfoldername被评估,显然不存在):
01_01_2014
我需要使用另一个字符串连接$ VAR,然后使用$ DAT,以便运行脚本导致:
/this/is/a/path/foldername01_01_2014
答案 0 :(得分:3)
shell只有你的语法:
${VAR}foldername${DAT}
IHTH