Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @ECHO OFF
- if exist "*.jar" (
- echo Jar2Cmd-ing:
- for /R "." %%f in (*.jar) do (
- echo %%f -^>
- echo %%~nf.j
- echo %%~nf.bat
- (
- echo @ECHO OFF
- echo java -jar %cd%\%%~n0.j %%*
- )>"%%~nf.bat"
- ren "%%f" "%%~nf.j"
- )
- ) else (
- echo There are no jar files in the current directory.
- )
- echo Closing in 5 seconds(press any key to close now)
- timeout 5 >nul
Add Comment
Please, Sign In to add comment