Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
cd /d c:\java\apache-ctakes-3.2.0\bin\ctakes-ytex\scripts
..\..\ant.bat -f build-setup.xml -Dlog4j.conf=CTAKES_HOME\config\log4j.xml all > setup.out 2>&1

linux: From a shell, cd to the CTAKES_HOME directory, set the environment, make sure necessary scripts are executable, and execute the ant script:

Code Block
languagebash
chmod u+x ${HOME}/ctakes.profile
. ${HOME}/ctakes.profile
cd ${CTAKES_HOME}/bin
chmod u+x ant
chmod u+x *.sh
cd ctakes-ytex/scripts
nohup ../../ant -f build-setup.xml -Dlog4j.conf=CTAKES_HOME/config/log4j.xml all > setup.out 2>&1 &
tail -f setup.out

...