gpt4 book ai didi

html - 将 bash 脚本的结果插入到 html 表中

转载 作者:太空宇宙 更新时间:2023-11-04 11:55:07 25 4
gpt4 key购买 nike

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

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

awk -F':' 'BEGIN{print "<table border=1 cellpadding=1 cellspacing=0 bordercolor=BLACK>
<tr>
<td>Environment</td>
<td>Default Shell</td>
</tr>"}{ print "
<tr>
<td>"$success"</td>
<td>"$(NF)"</td>
</tr>"$(NF)"</td></tr>"}END { print "</table>" } ' /var/tmp/pid_test.sh

如有任何帮助,我们将不胜感激!

最佳答案

尝试

{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

关于html - 将 bash 脚本的结果插入到 html 表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54635055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com