gpt4 book ai didi

regex - 使用正则表达式在 bash 中搜索 LDAP 查询

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

我有一个通过标准输入输入到脚本的 LDAP 查询。我想搜索特定值,可能不止一个,然后通过标准输出发送找到的值。

我的 LDAP 查询如下所示:

discover-repository-location=null, File Name=null, date-detected=Tue Jun11 12:44:14 UTC 2013, endpoint-machine-name=null, incident-id=545527, sender-ip=12.1.141.87, sender-email=WinNT://tmpdm/tmpcmp, Assigned To=null, sender-port=-null, endpoint-domain-name=null, Business Unit=null, endpoint-dos-volume-name=null, file-access-date=null, date-sent=Tue Jun 11 12:44:14 UTC 2013, endpoint-file-name=null, file-modified-by=null, Country=null, Manager Email=null, plugin-chain-id=1, discover-server=null, data-owner-name=null, Dismissal Reason=null, Last Name=null, First Name=null, Phone=null, subject=HTTP incident, Sender Email=null, UserID=null, endpoint-user-name=null, endpoint-volume-name=null, discover-name=null, discover-content-root-path=null, data-owner-email=null, file-create-date=null, endpoint-application-name=null, Employee Code=null, Region=null, Manager First Name=null, path=null, endpoint-application-path=null, Manager Last Name=null, Department=null, discover-location=null, protocol=HTTP, Resolution=null, file-owner=null, Postal Code=null, endpoint-file-path=null, Title=null, discover-extraction-date=null, Script-attribute=null, Manager Phone=null, file-created-by=null, file-owner-domain=nul

并说我要拔出 协议(protocol) 发件人邮箱 此查询中的属性,它作为单行读入。我可以通过以下方式简单地阅读它:
while read stdin line; do
echo $line
done

现在我可以检查这些属性是否存在,但是我无法获取键值对中的值。我正在尝试使用 bash 中的正则表达式来做到这一点。我想使用 '=' 和 ',' 作为分隔符来获取完整值,然后可能使用正则表达式来验证我是否从我的属性中获取了正确的值(作为安全检查,并用于记录目的)。

任何输入都会很有用,非常感谢。

最佳答案

如果您不想与 awk(或 friend )混淆,您也可以在纯 bash 中执行此操作:

if [[ $query =~ protocol=\([^,]+\) ]] ; then
protocol=${BASH_REMATCH[1]}
fi
if [[ $query =~ sender-email=\([^,]+\) ]] ; then
sender_email=${BASH_REMATCH[1]}
fi

(假设您的整个查询都在 $query 变量中)。

另请注意,我在 sender_email 变量名称中使用了“_”而不是“-”。

巧合的是,直到昨晚我才知道 BASH_REMATCH 数组,当时我碰巧也需要它!

更多信息请访问 GNU Bash documentation .

关于regex - 使用正则表达式在 bash 中搜索 LDAP 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18620768/

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