gpt4 book ai didi

linux - 我可以在同一行的 file.txt 上写吗

转载 作者:行者123 更新时间:2023-12-04 19:06:24 27 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How can I 'echo' out things without a newline?

(5 个回答)


11 个月前关闭。




这是我写的代码

echo "Positive count =" > file.txt | grep -o -i positive IMDB_Dataset.csv | wc -l >> file.txt
在 ubuntu 上,文件中的结果是
Positive count =
26188
我能不能把它写在同一行变成这样
Positive count = 26188

最佳答案

echo "Positive count =" `grep -o -i positive IMDB_Dataset.csv | wc -l` > file.txt
或者
echo "Positive count =" "$(grep -o -i positive IMDB_Dataset.csv | wc -l)" > file.txt

关于linux - 我可以在同一行的 file.txt 上写吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68422018/

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