forked from phoedos/pmd
24ce16e166
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@791 51baf565-9d33-0410-a72c-fc3788e3496d
9 lines
240 B
Bash
9 lines
240 B
Bash
#!/bin/sh
|
|
|
|
rmid -stop
|
|
rm -rf log
|
|
ps -ef | grep javaspace | grep -v grep | cut -c9-15 | xargs kill -9
|
|
ps -ef | grep httpd_go | grep -v grep | cut -c9-15 | xargs kill -9
|
|
ps -ef -U tom | grep java | grep -v grep | cut -c9-15 | xargs kill -9
|
|
|