gpt4 book ai didi

shell - 在 shell 脚本中优化 grep(或使用 AWK)

转载 作者:行者123 更新时间:2023-12-04 22:37:45 25 4
gpt4 key购买 nike

在我的 shell 脚本中,我试图使用在 $sourcefile 中找到的术语一遍又一遍地针对同一个 $targetfile 进行搜索。

我的 $sourcefile 格式如下:

pattern1
pattern2
etc...

我必须搜索的低效循环是:
for line in $(< $sourcefile);do
fgrep $line $targetfile | fgrep "RID" >> $outputfile
done

我知道可以通过将整个 $targetfile 加载到内存中,或者使用 AWK 来改进这一点?

谢谢

最佳答案

我是不是遗漏了什么,或者为什么不只是 fgrep -f "$sourcefile" "$targetfile" ?

关于shell - 在 shell 脚本中优化 grep(或使用 AWK),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2821136/

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