output.txt 在这里,我试图将数据写入一个文件,但这并没有发生...... 最佳-6ren">
gpt4 book ai didi

linux - 将 grep 的输出写入 Linux 上的文件?

转载 作者:IT王子 更新时间:2023-10-29 00:18:17 28 4
gpt4 key购买 nike

find . -name "*.php" | xargs grep -i -n "searchstring" >output.txt

在这里,我试图将数据写入一个文件,但这并没有发生......

最佳答案

如何使用 >>> 附加结果?

find . -name "*.php" | xargs grep -i -n "searchstring" >> output.txt

我现在没有 Linux 机器,所以我会尝试即兴发挥。

xargs grep -i -n "searchstring" 让我有点困扰。

也许您的意思是 xargs -I {} grep -i "searchstring"{},或者只是 xargs grep -i "searchstring"

因为 -n 作为 grep 的参数只会给你数字行,我怀疑这就是你需要的。

这样,您的最终代码将是

find . -name "*.php" | xargs grep -i "searchstring" >> output.txt

关于linux - 将 grep 的输出写入 Linux 上的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4498061/

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