shell脚本读文件并写入文件
时间: 2024-08-23 16:00:16 浏览: 75
Shell脚本读取ini配置文件的实现代码2例
在shell脚本中,你可以通过`read`命令从一个文件读取内容,然后使用`echo`或`>`操作符将数据写入另一个文件。这里有一个基本的例子:
```bash
#!/bin/bash
# 读取文件
source_file="input.txt"
while IFS= read -r line; do
echo "$line" # 这里可以对每一行做处理,如添加一些前缀或后缀
done < $source_file
# 写入新文件
output_file="output.txt"
echo "读取的内容已处理,即将写入到$output_file"
# 如果你想覆盖原有的output.txt,可以这样写
> $output_file
echo "每行处理后的结果写入$output_file"
# 或者追加内容到已有文件
echo "..." >> $output_file
# 结束脚本
echo "脚本结束"
#
阅读全文