hello,I have a problem with es.exe.i don't know how to search two keyword.i want search kk or zz in content.
i had try:
es.exe -instance 1.5a ext:doc;docx content:'"zz" "kk"'
es.exe -instance 1.5a ext:doc;docx content:'"zz" '| "kk"'
es.exe -instance 1.5a ext:doc;docx content:zz OR kk
but it doesn't work , i don't know how to use about this.i saw the document,but can't find how to use .please help me , thank you!
How to use es.exe to search two keyword in content
Re: How to use es.exe to search two keyword in content
Please try the following es calls:
Use ^< and ^> to escape < and >
Code: Select all
es.exe -instance 1.5a ext:doc;docx content:zz content:kk
es.exe -instance 1.5a ext:doc;docx content:^<zz kk^>
Re: How to use es.exe to search two keyword in content
thank you ! it's worked!