Trying to run a process using the "Run SSH Command" operator with '.*$ ' to target servers AIX Oprating System, may return errors like these:
"', which did not match prompt: '.*$ ' 2017-10-09 12:07:36,793 ERROR [com.optinuity.c2o.servicegroup.netutils.RemoteCommandsServiceOperationRunner] [8d-05092deceb98] Unable to get the user prompt after login."
The character '$' is interpreted by regex, so it may have something to tell the command do NOT interpreter the '$'.
In "User Command Prompt" just use: ".*\\$ ".
Using the '\\', the '$' character will not be interpreted by regex.