- 论坛徽章:
- 0
|
有一个有关合并变量的问题:
我在linux命令行方式下,作如下操作就很顺利:
$ year=`date --date "1 days ago" '+%Y'`
$ month=`date --date "1 days ago" '+%m'`
$ day=`date --date "1 days ago" '+%d'
$ f=month901121.$year$month$day.010.tar
$ echo $f
month901121.20060627.010.tar
但是我要把以上命令做在一个shell里,就不行了:
#!/usr/bin/sh
year=`date --date "1 days ago" '+%Y'`
month=`date --date "1 days ago" '+%m'`
day=`date --date "1 days ago" '+%d'`
file1=month901121.$year$month$day.010.tar
echo $file1
执行这个shell之后是:
/month901121.2006: No such file or directory.
?Invalid command
'06': command not understood.
请问各位高手,在shell中如何做多个变量的拼接?我如何才能得到month901121.$year$month$day.010.tar
这个结果? |
|