shell按行读取文件
时间: 2023-04-20 21:00:42 浏览: 632
shell读文件
Shell 按行读取文件的方法有很多种,其中比较常用的是使用 while 循环和 read 命令。具体操作步骤如下:
1. 使用 while 循环读取文件,例如:
```
while read line
do
echo $line
done < file.txt
```
2. 使用 read 命令读取文件中的每一行,例如:
```
while read -r line
do
echo $line
done < file.txt
```
其中,-r 参数表示不对反斜杠进行转义。
以上两种方法都可以按行读取文件,根据实际需求选择即可。
阅读全文