Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 459 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 459 Bytes

clean-gradle-daemon

this is a shell for windows to clean all gradle daemon process

copy the following code and save as a bat file and run it. That is all.


@echo off
echo ------------------------------------------
echo Liferay Kill All Gradle Daemon Process Kit
echo ------------------------------------------
for /f %%i in ('call jps^|find /i "GradleDaemon"') do ( echo %%i && taskkill /f /pid %%i )