linux - shell脚本:ambiguous redirect
PHP中文网
PHP中文网 2017-04-17 13:24:35
0
1
1407
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级讲师

Antworte allen(1)
左手右手慢动作

因为第六行你使用了奇怪的语法。显然你想要的是:

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[@]}
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!