Admin tool command line
The Windows command line for the admin tool supplied with the product distribution looks like:
start /B javaw -jar admin_out.jar "%CD%"
This command line is found in the admin.bat batch file.
The Linux/Unix command line for the admin tool supplied with the product distribution looks like:
java -jar admin_out.jar "$QVCS_HOME"
This command line is found in the admin.sh shell script.
On Windows platforms, the value for the %CD% variable is the directory containing the admin.bat file; on Linux/Unix platforms, the value for the QVCS_HOME environment variable is set within the admin.sh shell script to point to the current directory -- i.e. the directory containing the admin.sh shell script.
The purpose of the argument at the end of the command line is to identify the 'install' directory for the admin application.
|