我有一个通过标准输入输入到脚本的 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
假设我想从这个查询中提取协议或发件人电子邮件属性,它作为单行读入。我可以通过以下方式简单地阅读它:
while read stdin line; do
echo $line
done
现在我可以检查这些属性是否存在,但是我无法获取键值对中的值。我正在尝试使用 bash 中的正则表达式来做到这一点。我想使用 '=' 和 ',' 作为分隔符来获取完整值,然后可能使用正则表达式来验证我是否从我的属性中获取了正确的值(作为安全检查,并用于记录目的)。
任何输入都会很有用,非常感谢。