gpt4 book ai didi

linux - 如何将txt文件追加到之前创建的最后一行

转载 作者:太空宇宙 更新时间:2023-11-04 05:59:18 24 4
gpt4 key购买 nike

if 
python python_rule1 >> raw-data.txt

python python_rule2 >> raw-data.txt

if the output from rule1 is A

if the output from rule2 is B

then the raw-data.txt

A

B

我如何获得:

A, B

最佳答案

从问题来看,似乎有两个程序“python_rule1”和“python_rule2”,产生单个字符输出(A或B)。

所需的输出是将两个响应放在 stdout 上的同一行中,以逗号分隔,而不是将两行发送到 stdout。这可以通过将每个步骤的结果存储到 shell 变量(示例中的 R1、R2)中,然后将输出格式化为 stdout 来实现

R1=$(python python_rule1)
R2=$(python python_rule2)
echo "$R1, R2" >> raw-data.txt

关于linux - 如何将txt文件追加到之前创建的最后一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58412634/

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