shell while循环

本文介绍Bash脚本中while循环的使用方法及如何用while read line命令读取文件信息,展示了基本的shell编程技巧。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

#!/bin/bash
# while 循环
i=0;
while [ $i -lt 10 ];do
    ((i++));
done
echo $i;
# read -p "Please input number:"
Please input number:10
root@Ubuntu:/home/shell# read -p "Please input number:" input
Please input number:100
root@Ubuntu:/home/shell# echo $input
100

while 读取文件信息,这件事for就不好处理了。

#!/bin/bash
# while read line 读取文件信息
read -p "请输入文件地址:" input
if [ ! -f $input ];then
    echo "文件不存在"
    exit
fi

# 读取文件内容
while read line
do
    echo $line
done < $input
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值