linux - shell脚本:ambiguous redirect
PHP中文网
PHP中文网 2017-04-17 13:24:35
0
1
1411
nlines=6
index=0
iplist=
while read line
do
    index=$[ ${index}+1 ]
    iplist[$index]="$line"
done < `sed -n "5,${nlines}p" "cloudfs_deploy.conf"`
echo ${iplist[@]}

运行这段脚本之后,总是在sed那行报ambiguous redirect错误
conf文件存在,有6行,我单独运行
nlines=6 ; sed -n "5,${nlines}p" "cloudfs_deploy.conf"
是没有错误的
求教这是什么原因?

PHP中文网
PHP中文网

认证0级讲师

reply all(1)
左手右手慢动作

Because you used strange syntax on line 6. Obviously what you want is:

bashnlines=6
index=0
iplist=
sed -n "5,${nlines}p" "cloudfs_deploy.conf" | while read line; do
    index=$[ ${index}+1 ]
    iplist[$index]="$line"
done
echo ${iplist[@]}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!