Skip to content

Instantly share code, notes, and snippets.

@dorukcan
Created February 3, 2016 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dorukcan/d6e9903a345d4eda46fc to your computer and use it in GitHub Desktop.
Save dorukcan/d6e9903a345d4eda46fc to your computer and use it in GitHub Desktop.
@ECHO OFF
cd %~dp1
ECHO Compiling %~nx1.......
IF EXIST %~n1.class (
DEL %~n1.class
)
javac %~nx1
IF EXIST %~n1.class (
ECHO -----------OUTPUT-----------
java %~n1
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment