将bash脚本的结果插入html表

时间:2019-02-11 16:33:40

标签: html linux bash logging server

我有一个脚本,可以输出应用程序的最后3个日志。我正在寻找将这些数据放入HTML表中,然后将其发送给我的同事。

下面是我目前拥有的命令,但它没有打印出我要查找的内容。

LMV.endpoint.HTTP_REQUEST_HEADERS = {
    'Authorization': 'Bearer TOKENVALUE'
};

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

尝试

{your script that prints output} | awk ...

例如

$ echo -e "a:1\nb:2" | 
awk -F: 'BEGIN {print "<table>"}
               {print "<tr><td>" $NF "</td></tr>"}
         END   {print "</table>"}'

给予

<table>
<tr><td>1</td></tr>
<tr><td>2</td></tr>
</table>

管道

$ script ... | awk ... | mailx -s "test results" test@example.com