3

我在创建 html 表以显示文本文件中的统计信息时遇到问题。我确信有 100 种方法可以更好地做到这一点,但这里是:

(以下脚本中的注释显示了输出)

#!/bin/bash

function getapistats () {
    curl -s http://api.example.com/stats > api-stats.txt
    awk {'print $1'} api-stats.txt > api-stats-int.txt
    awk {'print $2'} api-stats.txt > api-stats-fqdm.txt
}

# api-stats.txt example
#    992 cdn.example.com
#    227 static.foo.com
#    225 imgcdn.bar.com
# end api-stats.txt example

function get_int () {

    for i in `cat api-stats-int.txt`;
        do echo -e "<tr><td>${i}</td>";
    done
}

function get_fqdn () {

    for f in `cat api-stats-fqdn.txt`;
        do echo -e "<td>${f}</td></tr>";
    done

}

function build_table () {

echo "<table>";
echo -e "`get_int`" "`get_fqdn`";
#echo -e "`get_fqdn`";
echo "</table>";
}

getapistats;

build_table > api-stats.html;

# Output fail :|
# <table>
# <tr><td>992</td>
# <tr><td>227</td>
# <tr><td>225</td><td>cdn.example.com</td></tr>
# <td>static.foo.com</td></tr>
# <td>imgcdn.bar.com</td></tr>

# Desired output:
# <tr><td>992</td><td>cdn.example.com</td></tr>
# ...
4

3 回答 3

11

这在纯 awk 中相当简单:

curl -s http://api.example.com/stats > api-stats.txt
awk 'BEGIN { print "<table>" }
     { print "<tr><td>" $1 "</td><td>" $2 "</td></tr>" }
     END   { print "</table>" }' api-stats.txt > api-stats.html

awk 真的是为这种用途而设计的。

于 2012-07-14T21:34:36.500 回答
6

你至少可以用一个 awk 来做到这一点。

curl -s http://api.example.com/stats | awk '
    BEGIN{print "<table>"} 
    {printf("<tr><td>%d</td><td>%s</td></tr>\n",$1,$2)}
    END{print "</table>"}
' 
于 2012-07-14T21:37:02.007 回答
0

这可以用 bash 完成;)

    while read -u 3 a && read -u 4 b;do
      回声$a$b;
    完成 3</etc/passwd 4</etc/services

但我的经验是,在 bash/awk/etc 中做这样的事情通常是一件坏事

我在代码中使用的功能深深地隐藏在 bash 手册页中......

我建议使用一些真实的语言进行这种数据处理,例如:(ruby 或 python),因为它们更灵活/可读/可维护

于 2012-07-14T19:43:45.397 回答