5

我有以下 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

但是,这只给了我(因为变量 $VARfoldername 被评估,显然不存在):

01_01_2014

我需要将 $VAR 与另一个字符串连接,然后与 $DAT 连接,这样运行脚本会导致:

/this/is/a/path/foldername01_01_2014
4

1 回答 1

6

shell 有适合你的语法:

${VAR}foldername${DAT}

IHTH

于 2013-10-01T15:26:53.387 回答