mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-04-29 22:24:34 +02:00
5 lines
126 B
Bash
5 lines
126 B
Bash
#!/system/bin/sh
|
|
grep __PKGNAME /proc/mounts | while read -r line; do
|
|
echo "$line" | cut -d" " -f2 | xargs -r umount -l
|
|
done
|