Home  >  Q&A  >  body text

linux - shell脚本:ambiguous redirect

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中文网2745 days ago1418

reply all(1)I'll reply

  • ringa_lee

    ringa_lee2017-04-17 13:26:35

    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[@]}
    

    reply
    0
  • Cancelreply