在awk函数中执行multipal命令

时间:2017-06-15 14:59:39

标签: shell awk scripting

我们正在获取一个存储报告,在该报告中我们运行isi-storagepool --list -v,包括一个awk函数,它执行一些计算并在最后打印数据。

当前工作命令

isi storagepool list -v |awk 'function num2gb(n) { if (n ~ /T$/) return n / 1; return n / 1024; }
        /Requested Protection:/ { parity=substr($NF,length($NF)-1,1) }
        /Nodes:/ { nodes=$NF }
        /HDD Total/ { hdd_total=$NF }
        /HDD Used/ { hdd_used=num2gb($NF) }
        END {
                multiplier=nodes-parity
                total=hdd_total/nodes*multiplier
                used=hdd_used/nodes
                eu=used*multiplier*0.8
                et=total*0.8
                used1=eu/et*100
                print "parity =" parity
                print "NodeNumber =" nodes
                print "Total = " total " TB"
                print "Effective Total volume = " total*0.8 " TB"
                print "USED =" used1 " %"
                print "Effective used=" used*multiplier*0.8 " TB"
                print "Available volume=" (hdd_total-hdd_used)/nodes*multiplier*0.8 " TB" }'

当前工作命令的示例输出

parity =1
NodeNumber =3
Total = 37.3013 TB
Effective Total volume = 29.8411 TB
USED =333975%
Effective used=534360 TB
Available volume=-534330 TB

现在我们要在上面的示例输出中添加更多信息,我们将从以下命令中获取。

# isi_classic snapshot usage | tail -n 1
                                                  358G     n/a (R)    0.63% (T)

因此需求输出应如下所示

parity =1
NodeNumber =3
Total = 37.3013 TB
Effective Total volume = 29.8411 TB
USED =333975%
Effective used=534360 TB
Available volume=-534330 TB
Snapshot USED = 358G         # added output from the new command  # isi_classic snapshot usage
Snapshot USED % = 0.63%      # added output from the new command  # isi_classic snapshot usage

1 个答案:

答案 0 :(得分:1)

组合几个命令输出的最明显方法是使用组命令,如下所示:

{ date; date; } | awk 1

可能更优雅的解决方案是使用流程替换,如下所示:

awk 1 <(date) <(date)

后者允许使用旧的NR==FNR技巧,例如。