我想做一个“for”循环,将两个变量连接起来。这是情况
初始变量集,每个变量指向一个文件:
weather_sunny=/home/me/foo
weather_rainy/home/me/bar
weather_cloudy=/home/me/sth
第二组变量:
sunny
rainy
cloudy
现在,我想做这样的事情......
for today in sunny rainy cloudy ; do
cat ${weather_$today}
done
但我没有成功获得初始变量的内容。我怎样才能做到这一点?