gpt4 book ai didi

linux - 如何将查找输出重定向到文件中?

转载 作者:太空宇宙 更新时间:2023-11-04 04:38:51 25 4
gpt4 key购买 nike

我尝试过不同的 bash 脚本,比如这个

#!/bin/bash

FILE='C2.DAT'

echo find -name '*.xml' -exec grep -H 'c2 unit' {} \ >> FILE

但这不起作用。我想要的是将 find 中的内容重定向到我的文件。

最佳答案

您需要重定向到$FILE而不是FILE,并且不需要echo。反斜杠后还缺少一个分号:

find -name '*.xml' -exec grep -H 'c2 unit' {} \; >> $FILE

关于linux - 如何将查找输出重定向到文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34008251/

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