博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
shell for循环
阅读量:6197 次
发布时间:2019-06-21

本文共 731 字,大约阅读时间需要 2 分钟。

shell for循环

for循环一般格式为:

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

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

1、顺序输出当前列表中的数字

for loop in 1 2 3 4 5

do
  echo "The value is: $loop"
done
运行结果:
The value is: 1
The value is: 2
The value is: 3
The value is: 4
The value is: 5

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

for str in 'This is a string'
do
  echo $str
done
运行结果:
This is a string

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

#!/bin/bash
for FILE in $HOME/.bash*
do
  echo $FILE
done
运行结果:
/root/.bash_history
/root/.bash_logout
/root/.bash_profile
/root/.bashrc

4、显示/usr目录下所有目录

#!/bin/bash
dir=$(ls -l /usr/ |awk '/^d/ {print $NF}')
for i in $dir
do
  echo $i
done
运行结果
bin
etc
games
include
lib
lib64
libexec
local
sbin
share
src

 

转载地址:http://omjca.baihongyu.com/

你可能感兴趣的文章
实验二
查看>>
Beta冲刺-第四天
查看>>
Nginx配置资源下载目录
查看>>
该用Python还是SQL?4个案例教你节省时间
查看>>
回答自己的提问
查看>>
tomcat系列之三:Tomcat架构
查看>>
JavaScript数据结构——模仿ES6中定义的类似的Set类
查看>>
Android --- 简单实现三级缓存LruCache
查看>>
WebGl通过缓冲区绘制多个点
查看>>
盘点2012:云计算的春天
查看>>
码农如何写好一封邮件/1
查看>>
IntelliJ Idea 常用快捷键列表
查看>>
VARIANT
查看>>
打印 1 到最大的 n 位数(C++ 和 Python 实现)
查看>>
Templated Helper Methods(二)
查看>>
Linux命令之date
查看>>
vue项目引入社交分享插件
查看>>
P2569 [SCOI2010]股票交易
查看>>
webpack学习(一)
查看>>
另一个维度:cocos-2d VS vue
查看>>