shell的for循环

与其他编程语言类似,Shell支持for循环。

 for循环一般格式为: for 变量 in 列表
do
    command1
    command2
    ...
    commandN
done
列表是一组值(数字、字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表中的下一个值赋给变量。

 in 列表是可选的,如果不用它,for 循环使用命令行的位置参数。

 例如,顺序输出当前列表中的数字: 

01.for loop in 1 2 3 4 5
02.do
03.    echo "The value is: $loop"
04.done

运行结果: The value is: 1
The value is: 2
The value is: 3
The value is: 4
The value is: 5

 顺序输出字符串中的字符: 

01.for str in 'This is a string'
02.do
03.    echo $str
04.done

运行结果: This is a string

 显示主目录下以 .bash 开头的文件: 

01.#!/bin/bash
02.
03.for FILE in $HOME/.bash*
04.do
05.   echo $FILE
06.done

运行结果: /root/.bash_history
/root/.bash_logout
/root/.bash_profile
/root/.bashrc
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值