工作中会遇到文件的融合,例如多个html文件拼接成一个文件
大致情况:
平时daily邮件发送的比较多,需要都整合成一个文件由jenkins发送,这就涉及到不同项目的html组合成一个新的html
个人思路:
从其他html中截取需要的部分,然后插入点需要发送报告的HTML文件中
例如:
sed -n ‘/^<table/,/<\/table>$/p‘ report_odp.html >>a.body 截取table
sed -n ‘/^<body>/,/<\/body>$/p‘ results.html >>a.body 截取body
sed ‘/<\/head>/r a.body‘ report_rpc.html 将上述插入到report_rpc.html中head下
具体可以查看http://man.linuxde.net/sed