【linux/shell】shell中使用for循环读取数据

目录

一.for循环从列表中读取数据的几种形式

二.for循环从配置文件读取数据

三.for循环用通配符读取目录

四.for循环带有数字变量


一.for循环从列表中读取数据的几种形式

bash 复制代码
#!/bin/bash
listl="aa bb cc"
list2='aa bb cc'

for i in $list3
do
    echo $i
done

使用这种形式的列表时需要使用${list[@]}这样的形式访问变量list3=("aa" "bb" "cc")

bash 复制代码
#!/bin/bash
for i in ${list[@]}
do
    echo $i 
done

二.for循环从配置文件读取数据

从配置文件中读取数据:

bash 复制代码
#!/bin/bash
for moudle in $(cat PRE Config)
do
    echo $moudle
done

三.for循环用通配符读取目录

bash 复制代码
#!/bin/bash
for file in /home/rich/*
do
    if [ -d "$file" ]
    then
        echo "$file is a directory"
    elif [ -f "$file" ]
        echo "$file is a file"
    fi
done

四.for循环带有数字变量

第一种:使用C语言风格for循环

bash 复制代码
for(i=0;i<10;i++)

{
  printf("number is %d/n",i)
}

第二种:

bash 复制代码
for k in {1..14}
do
    n1='cat result1 |sed-n "$k"p | awk '{print $0}'
    n2='cat result2| sed -n "$k"p | awk '{print $0'}
    echo "scale=6; $n1/$n2"bc | awk '{printf "%.6f" $0}'>> result
done
相关推荐
gywl1 小时前
openEuler VM虚拟机操作(期末考试)
linux·服务器·网络·windows·http·centos
日记跟新中2 小时前
Ubuntu20.04 修改root密码
linux·运维·服务器
码农君莫笑2 小时前
信管通低代码信息管理系统应用平台
linux·数据库·windows·低代码·c#·.net·visual studio
BUG 4043 小时前
Linux——Shell
linux·运维·服务器
大霞上仙3 小时前
Linux 多命令执行
linux·运维·服务器
晨欣3 小时前
Kibana:LINUX_X86_64 和 DEB_X86_64两种可选下载方式的区别
linux·运维·服务器
AI青年志3 小时前
【服务器】linux服务器管理员查看用户使用内存情况
linux·运维·服务器
dessler4 小时前
Docker-run命令详细讲解
linux·运维·后端·docker
PyAIGCMaster5 小时前
ubuntu装P104驱动
linux·运维·ubuntu
奈何不吃鱼5 小时前
【Linux】ubuntu依赖安装的各种问题汇总
linux·运维·服务器