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