Multiple text entities search
To Whom It May Concern:
Here is my question. I'd like to search for several text entities in my ACL script. For example, searching for &MP00002; and &M1229015a;. Below is what I did.
/* It works when there is one entity only. */
find -m -q -nowrap '&MP00002;';
/* None of the following tests works*/
find -m -q -e -nowrap '&MP00002;|&M1229015a;';
find -m -q -e -nowrap /&MP00002;|&M1229015a;/;
May I know what is the acceptable regular expression for it?
Best Regards,
Jing

