gpt4 book ai didi

shell - 使用shell绘制信息表

转载 作者:行者123 更新时间:2023-12-01 15:55:50 31 4
gpt4 key购买 nike

我在一个txt文件中得到了以下数据,

Apple:Fruit:20:30
Leek:Vegetable:40:50

在一个表格中,(项目描述):(项目类别):(数量):(价格)。如何使用 shell 脚本绘制表格。有输出

Item Description           Category          Qty       Price        Total Sales
--------------------------------------------------------------------------------
Apple Fruit 20 $30.00 $600.00
Leek Vegetable 40 $50.00 $2000.00

其中总销售额等于数量 x 价格。请帮忙。提前致谢!

最佳答案

这可以让你开始

awk '{printf "%-27s%-18s%-11s$%-14.2f$%.2f\n",$1,$2,$3,$4,$3*$4}' FS=: foo.txt

结果

Apple                      Fruit             20         $30.00         $600.00Leek                       Vegetable         40         $50.00         $2000.00

关于shell - 使用shell绘制信息表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21502629/

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