When attempting to run a CLW (Command Line Workstation) command I get the following error:
"-bash: syntax error near unexpected token `('" on a linux OS.
Example:
java -Xmx128M -Duser=admin -Dhost=localhost -Dport=5001 -jar CLWorkstation.jar list alerts matching (.*) in management modules matching (.*)
The issue is that the ( and ) signs of the (.*) regex and you need to use the escape character in front of them.
The correct syntax is \(.*\). So replace (.*) with \(.*\) and run the command again
For more information on CLW commands check APM Guide. (APM Version for the guide is controls at the top right "Versions" droplist.)