gpt4 book ai didi

linux - 从 .csv 日志文件中的文本文件中搜索 IP,如果找到,则在其旁边添加新列

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

我需要一个 shell 脚本来从 .csv 日志文件内的文本文件中查找 IP 地址,如果找到结果,它将在 csv 文件的右侧创建一个新列,并将其称为“可疑”

到目前为止,我想出了这个命令:

cat *.csv | grep --color=always -z -w -f 'list.txt' | sed 's/^/SUSPICIOUS, /' > *.csv

这有两个问题:

  1. 它在每一行上创建可疑列

  2. 它在左侧而不是右侧创建新列

(如果我使用正则 grep 表达式,它只会保存包含这些 IP 地址的结果,我需要日志的每一行)

最佳答案

这看起来使用 awk 会容易得多。将文本文件加载到关联数组的键中。然后读取CSV文件,测试数组中是否包含IP字段。

awk -i inplace -F, -v OFS=, '
NR==FNR { a[$0]++; next } # Put lines from list.txt into array
a[$8] { print $0 "SUSPICIOUS" } # Test if IP in current row is in array
{ print }' inplace=0 list.txt inplace=1 *.csv # Otherwise print row normally

这使用了 GNU awk 的就地扩展,因此它可以将结果写回输入文件。

关于linux - 从 .csv 日志文件中的文本文件中搜索 IP,如果找到,则在其旁边添加新列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51776445/

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