STR: mkdir -p ~/cli-scripts cd ~/cli-scripts $RHQ_CLI_HOME/bin/rhq-cli.sh -c "java.lang.System.getProperty('user.dir')" >>> /home/ondra/work/JON/rhq-cli It would be more logical/useful if the client started in the CWD. There's a way: export RHQ_CLI_JAVA_OPTS=-Duser.dir=`echo ~/cli-scripts` $RHQ_CLI_HOME/bin/rhq-cli.sh -c "java.lang.System.getProperty('user.dir')" >>> /home/ondra/cli-scripts But it would be nice to have it out of the box.
BTW there's a bit confusing comment in rhq-client.sh: # Prepare the command line arguments passed to the RHQ Agent (should be # Prepare the command line arguments passed to the RHQ CLI )