gpt4 book ai didi

shell - 如何将结果从 shell 脚本保存在 excel 中的单独列中?

转载 作者:行者123 更新时间:2023-11-28 21:26:34 29 4
gpt4 key购买 nike

我正在将执行的结果保存在其中一张 Excel 工作表中。结果将显示在如下新行中:

enter image description here

我使用了下面的命令:

$ bash eg.sh Behatscripts.txt | egrep -w 'Executing the|scenario' >> output.xls

我想显示如下结果:

|                  A                   |          B           |       c     |
1 Executing the script:cap_dutch_home 1 scenario(1passed)
2 Executing the script:cap_english_home 1 scenario(1passed)

另一件事是在执行时会创建 output.xls 单独的文件,而不是使用已经存在的文件。感谢您的任何建议。

最佳答案

你可以用这个;

用awk;

bash eg.sh Behatscripts.txt | egrep -w 'Executing the|scenario' | awk 'BEGIN {print "Column_A\tColumn_B"}NR%2{printf "%s \t",$0;next;}1' output.xls

没有egrep

bash eg.sh Behatscripts.txt | awk '/Executing the|scenario/' | awk 'BEGIN {print "Column_A\tColumn_B"}NR%2{printf "%s \t",$0;next;}1' >> output.xls

关于shell - 如何将结果从 shell 脚本保存在 excel 中的单独列中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39102135/

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