mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-03 15:05:32 +00:00
14 lines
324 B
Bash
14 lines
324 B
Bash
#!/system/bin/sh
|
|
|
|
HIDELIST=/magisk/.core/magiskhide/hidelist
|
|
PROCESS=$1
|
|
|
|
if [ ! -z "$PROCESS" ]; then
|
|
if [ `grep -c "^$PROCESS$" $HIDELIST` -eq "0" ]; then
|
|
echo "$PROCESS" >> $HIDELIST
|
|
set --
|
|
set `/data/busybox/ps -o pid,args | grep "$PROCESS" | grep -v grep` >/dev/null
|
|
[ ! -z "$1" ] && kill "$1"
|
|
fi
|
|
fi
|