Revision [658]
This is an old revision of Install made by DavidLee on 2009-08-05 12:33:04.
Install
After downloading the installation bundle (Download) install by extracting the bundle and setting a single environment variable XMLSH to the installed location.xmlsh requires an installation of the Sun Java JRE or SDK version 1.6 or greater and assumes java is in the PATH.
Windows systems
Unzip the installation to any directory.Set a system, user, or command environment variable XMLSH to refer to the root directory of the installation.
set XMLSH=<full path to xmlsh directory>
If you want xmlsh to be found without specifying the full path, you will need to edit your PATH variable either in the system environment or at the command line to include the %XMLSH%\win32 directory, or create your own .bat file which calls %XMLSH%\win32\xmlsh.bat
set PATH=%PATH%;%XLMSH%\win32
Unix systems (Including Mac)
Unzip the installation to any directory.unzip xmlsh_<release>.zip
Set a system, user, or command environment variable XMLSH to refer to the root directory of the installation.
export XMLSH=<full path to xmlsh directory>
Now the xmlsh script needs to be made executable
chmod a+x $XMLSH/unix/xmlsh
If you want xmlsh to be found without specifying the full path, you will need to edit your PATH variable in your profile or on command line to include the $XMLSH/unix directory, or create your own script file which calls $XMLSH/unix/xmlsh
export PATH=$PATH:$XMLSH/unix