如何以表格格式邮寄脚本输出

时间:2016-01-03 05:09:08

标签: linux bash shell email

我的脚本输出如下所示。

目前的结果:

Filename Destname rowcount bytesize
file1 default 1488 2248
file2 default 123 657
file3 default 123 456
file4 default 567 124

实际结果如下(如果可能,有边框):

Filename  Destname  rowcount  bytesize
file1     default   1488      2248
file2     default   123       657
file3     default   123       456
file4     default   567       124

我需要以相同的格式在内容上邮寄。

1 个答案:

答案 0 :(得分:1)

#!/bin/bash

input="/path/to/your/file.txt"
tmpfile="/path/to/tmpfile.html"

echo 'Content-Type: text/html; charset="us-ascii" ' > "$tmpfile"
awk 'BEGIN{print "<html><body><table border=1>"} {print "<tr>";for(i=1;i<=NF;i++)print "<td>" $i"</td>";print "</tr>"} END{print "</table></body></html>"}' "$input" >> "$tmpfile"
mail -s "test" abc@xyz.com < "$tmpfile"

来源:http://www.unix.com/302556864-post5.html