我需要插入csv文件(file.csv(内容,例如:
col1, col2, ...coln
1,2,3
4,5,6
.
.
100,101,102
转换为<pre> </pre>
标记内的html文件(file.html(。
file.html中的愿望结果:
<html>
.
.
<pre>
col1, col2, ...coln
1,2,3
4,5,6
.
.
100,101,102
</pre>
.
.
</html>
我知道使用sed
可以实现它,但不知道具体细节
谢谢。
这是有效的:
gawk -i inplace '/<pre[^>]*>/{printf $0; while(getline line<"file.csv"){print line};next}1' file.html &&