2024-09-07 02:16:08
2024-09-07 04:51:50
2024-09-07 03:47:37
2024-09-07 03:10:44
我现在可以讲配置而文件的内容显示出来,关键是我想以累加的方式把配置文件里的内容存到一个变量里,我把代码贴出来
ex="--exclude"
while read one
do
[ -z $one ] && continue
con="$con$ex=$one$ex" //这里我是想把配置文件的内容都存在变量con中
eg:con =--exclude=\.svn --exclude=xxxxxxxxx ……
done < boot.ini
echo "con=$con"