shell编程之for循环

1.基本语法1

for (( 初始值;循环控制条件;变量变化 ))

  do

    程序

  done

2.基本语法2

for 变量 in 值1 值2 值3…

  do

    程序

  done

3.示例

[root@eshop-detail03 shell]# vi for1.sh
#!/bin/bash

s=0
for((i=0;i<=100;i++))
do
        s=$[$s+$i]
done
echo $s
~
"for1.sh" [New] 9L, 75C written
[root@eshop-detail03 shell]# chmod 777 for1.sh 
[root@eshop-detail03 shell]# ./for1.sh 
5050

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值