mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-05-01 07:04:33 +02:00
6 lines
159 B
Bash
6 lines
159 B
Bash
#!/system/bin/sh
|
|
grep __PKGNAME /proc/self/mountinfo | while read -r line; do
|
|
mountpoint=$(echo "$line" | cut -d' ' -f5)
|
|
umount -l "${mountpoint%%\\*}"
|
|
done
|