当前位置: 技术问答>linux和unix
清高手帮忙,急急!!!
来源: 互联网 发布时间:2015-03-23
本文导语: ai=1 INSIDEDEV1=eth0 INSIDEDEV2=eth1 INSIDEDEV2=eth2 INSIDEDEV3=eth0 INSIDEDEV4=eth0 ifcount1=0 ifcount2=0 while [ $ai -lt 4 ] do if [ "$INSIDEDEV4" = "$INSIDEDEV$ai" ];then ifcount4=`expr $ifcount$ai + 1` fi ai=`expr $ai + 1` done 怎样把$ai传到$INSIDEDEV...
ai=1
INSIDEDEV1=eth0
INSIDEDEV2=eth1
INSIDEDEV2=eth2
INSIDEDEV3=eth0
INSIDEDEV4=eth0
ifcount1=0
ifcount2=0
while [ $ai -lt 4 ]
do
if [ "$INSIDEDEV4" = "$INSIDEDEV$ai" ];then
ifcount4=`expr $ifcount$ai + 1`
fi
ai=`expr $ai + 1`
done
怎样把$ai传到$INSIDEDEV$ai中
INSIDEDEV1=eth0
INSIDEDEV2=eth1
INSIDEDEV2=eth2
INSIDEDEV3=eth0
INSIDEDEV4=eth0
ifcount1=0
ifcount2=0
while [ $ai -lt 4 ]
do
if [ "$INSIDEDEV4" = "$INSIDEDEV$ai" ];then
ifcount4=`expr $ifcount$ai + 1`
fi
ai=`expr $ai + 1`
done
怎样把$ai传到$INSIDEDEV$ai中
|
如下:
while [ $ai -lt 4 ]
do
eval INSIDEDEV='$INSIDEDEV'$ai
if [ "$INSIDEDEV4" = "$INSIDEDEV" ];then
ifcount同。主要是要使用eval。
while [ $ai -lt 4 ]
do
eval INSIDEDEV='$INSIDEDEV'$ai
if [ "$INSIDEDEV4" = "$INSIDEDEV" ];then
ifcount同。主要是要使用eval。