mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-28 04:25:27 +00:00
14 lines
334 B
Bash
14 lines
334 B
Bash
#!/system/bin/sh
|
|
|
|
HIDELIST=/magisk/.core/magiskhide/hidelist
|
|
PROCESS=$1
|
|
|
|
if [ ! -z "$PROCESS" ]; then
|
|
cp -af $HIDELIST $HIDELIST.tmp
|
|
cat $HIDELIST.tmp | grep -v "^$PROCESS$" > $HIDELIST
|
|
rm -f $HIDELIST.tmp
|
|
set --
|
|
set `/data/busybox/ps -o pid,args | grep "$PROCESS" | grep -v grep` >/dev/null
|
|
[ ! -z "$1" ] && kill "$1"
|
|
fi
|