Skip to content

Instantly share code, notes, and snippets.

@marcolussetti
Last active September 27, 2016 01:18
Show Gist options
  • Save marcolussetti/e6ecc0113f0e53978cf2e77a2ebfdc18 to your computer and use it in GitHub Desktop.
Save marcolussetti/e6ecc0113f0e53978cf2e77a2ebfdc18 to your computer and use it in GitHub Desktop.
Workaround for DrJava autoimport issue: runs all compiled java classes in the current directory
@echo off
for %%f in (%cd%\*.class) do (
echo #### Running %%~nf ####
java %%~nf
echo.
echo.)
set /p end="Press anything to exit!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment