bugfix - Failed to create new rules via Holmes GUI
[holmes/rule-management.git] / rulemgt-standalone / src / main / assembly / bin / find_kill_process.bat
1 @REM\r
2 @REM Copyright 2017 ZTE Corporation.\r
3 @REM\r
4 @REM Licensed under the Apache License, Version 2.0 (the "License");\r
5 @REM you may not use this file except in compliance with the License.\r
6 @REM You may obtain a copy of the License at\r
7 @REM\r
8 @REM     http://www.apache.org/licenses/LICENSE-2.0\r
9 @REM\r
10 @REM Unless required by applicable law or agreed to in writing, software\r
11 @REM distributed under the License is distributed on an "AS IS" BASIS,\r
12 @REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13 @REM See the License for the specific language governing permissions and\r
14 @REM limitations under the License.\r
15 @REM\r
16 \r
17 echo %1 | findstr %2 >NUL\r
18 echo ERRORLEVEL=%ERRORLEVEL%\r
19 IF ERRORLEVEL 1 goto findend\r
20 for /f "tokens=1" %%a in (%1) do (  \r
21     echo kill %1\r
22     taskkill /F /pid %%a\r
23 )\r
24 :findend