Kill process after remove from list

This commit is contained in:
topjohnwu 2016-11-06 02:43:57 +08:00
parent 0498540439
commit 24a510bc2e

View File

@ -6,4 +6,6 @@ if [ ! -z "$1" ]; then
mv $HIDELIST $HIDELIST.tmp
cat $HIDELIST.tmp | grep -v "^$1$" > $HIDELIST
rm -f $HIDELIST.tmp
set `/data/busybox/ps -o pid,args | grep "$1" | grep -v "grep"`
kill "$1"
fi