mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-05-01 15:14:25 +02:00
6 lines
152 B
Bash
6 lines
152 B
Bash
#!/system/bin/sh
|
|
grep __PKGNAME /proc/self/mountinfo | while read -r line; do
|
|
mount_path=$(echo "$line" | cut -d' ' -f5)
|
|
umount -l "$mount_path"
|
|
done
|