Up a level
Export as [feed] Atom [feed] RSS 1.0 [feed] RSS 2.0
[tool] Batch List
Number of items: 5.

Exercises A
Justin Bradley . 22 Apr 2009 12:52

Exercises and solutions in LaTex

Exercises A pdf
Justin Bradley . 22 Apr 2009 12:01

Exercises and solutions in PDF

Exercises B
Justin Bradley . 22 Apr 2009 13:05

Exercises and solutions in LaTex

Exercises B pdf
Justin Bradley . 22 Apr 2009 12:01

Exercises and solutions in PDF

Java path setting batch file
Justin Bradley . 03 Oct 2013 08:10

This is a batch file written to help students on ECS' Programming 1 course (COMP1202) using iSolutions machines which have the JDK, but do not add it to the PATH variable, making compilation from the command line difficult. It attempts to find the JDK directory and add it to the Windows PATH. The code is as follows: @SET JAVA_HOME=C:\Program Files\Java @FOR /F %%G IN ('DIR /B "%JAVA_HOME%\JDK*"') DO @SET JDK_HOME=%JAVA_HOME%\%%G @SET PATH=%JDK_HOME%\bin;%PATH% @javac -version @echo. @echo %JDK_HOME%\bin successfully added to Windows PATH @echo. @echo Now type 'javac'. @echo. @echo. @echo. @CMD

This list was generated on Sat Apr 27 02:08:00 2024 UTC.