shell for循环
for循环一般格式为:
for 变量 in 列表do command1 command2 ... commandNdone列表是一组值(数字、字符串等)组成的序列,每个值通过空格分隔。每循环一次,就将列表中的下一个值赋给变量。in 列表是可选的,如果不用它,for 循环使用命令行的位置参数。
1、顺序输出当前列表中的数字
for loop in 1 2 3 4 5
do echo "The value is: $loop"done运行结果:The value is: 1The value is: 2The value is: 3The value is: 4The value is: 52、顺序输出字符串中的字符:
for str in 'This is a string'do echo $strdone运行结果:This is a string3、显示主目录下以 .bash 开头的文件:
#!/bin/bashfor FILE in $HOME/.bash*do echo $FILEdone运行结果:/root/.bash_history/root/.bash_logout/root/.bash_profile/root/.bashrc4、显示/usr目录下所有目录
#!/bin/bashdir=$(ls -l /usr/ |awk '/^d/ {print $NF}')for i in $dirdo echo $idone运行结果binetcgamesincludeliblib64libexeclocalsbinsharesrc