The FIND commands syntax is:
find "string"
With the string being matched being what's inside the quotes, not including the quotes. Now suppose I want to match a string that has a leading and trailing quote character, such as:
"CN=jdoe,OU=users,DC=domain,DC=com"
If you do a find """CN=jdoe,OU=users,DC=domain,DC=com"" it does not work. Anyone know what the proper syntax would be?
Thanks.
find "string"
With the string being matched being what's inside the quotes, not including the quotes. Now suppose I want to match a string that has a leading and trailing quote character, such as:
"CN=jdoe,OU=users,DC=domain,DC=com"
If you do a find """CN=jdoe,OU=users,DC=domain,DC=com"" it does not work. Anyone know what the proper syntax would be?
Thanks.