AWK 输出未对齐

AWK 输出未对齐

我有简单的 awk 命令生成输出然后发送电子邮件:

awk '(NR==FNR){a[$2]=sprintf("%.2f",$1*value); next} {print $1,$2,a[$2]}' OFS="\t\t\t" value=$COST /tmp/1.txt /tmp/2.txt

然而最后一列与第二列不一致:

510G                    /path/to/aaaaaaaaaaaaa/                 0.00
157G                    /path/to/bbbbbbbbb/                     0.00
253M                    /path/to/ccccccccccccccc/                        0.00
61M                     /path/to/dddddddd/                      0.00
16K                     /path/to/eeeee/                 0.00
8.0K                    /path/to/fffffffff/                     0.00

我如何强制使其始终保持一致?/path/to是静态的。

答案1

您可以将命令的输出通过管道传输到以column -t将任何输出格式化为列。输入需要用空格分隔,因此您无需猜测需要添加多少个制表符。

例如,假设一个文件包含以下内容:

510G        /path/to/aaaaaaaaaaaaa/          0.00
157G                /path/to/bbbbbbbbb/                 0.00
253M           /path/to/ccccccccccccccc/                  0.00
61M                  /path/to/dddddddd/               0.00
16K                  /path/to/eeeee/             0.00
8.0K                /path/to/fffffffff/              0.00

cat the.file|column -t命令产生以下输出:

510G  /path/to/aaaaaaaaaaaaa/    0.00
157G  /path/to/bbbbbbbbb/        0.00
253M  /path/to/ccccccccccccccc/  0.00
61M   /path/to/dddddddd/         0.00
16K   /path/to/eeeee/            0.00
8.0K  /path/to/fffffffff/        0.00

相关内容