当前位置: 技术问答>linux和unix
SHELL中for i=1 to 100之类的语句怎么写?我不能把1-100都放到参数表啊?a++运算怎么实现?
来源: 互联网 发布时间:2015-06-13
本文导语: 各位帮忙了! | #/usr/bin/sh I=0 while [ $I -lt 100 ]; do I=`expr $I + 1` echo $I done | I=0 do if [ $I
各位帮忙了!
|
#/usr/bin/sh
I=0
while [ $I -lt 100 ]; do
I=`expr $I + 1`
echo $I
done
I=0
while [ $I -lt 100 ]; do
I=`expr $I + 1`
echo $I
done
|
I=0
do
if [ $I
do
if [ $I