Magisk/zip_static/common/magiskhide/rm
2016-11-07 23:57:21 +08:00

12 lines
270 B
Bash

#!/system/bin/sh
HIDELIST=/magisk/.core/magiskhide/hidelist
if [ ! -z "$1" ]; then
cp -af $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