shell 读取文件内容
时间: 2023-11-11 17:59:57 浏览: 124
shell读文件
可以使用 cat 命令读取文件内容,例如:
```
cat filename.txt
```
其中 filename.txt 是要读取的文件名。
如果需要逐行读取文件内容,可以使用 while 循环结合 read 命令,例如:
```
while read line
do
echo $line
done < filename.txt
```
其中 filename.txt 是要读取的文件名。
阅读全文