mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-05-01 15:14:25 +02:00
7 lines
138 B
Bash
7 lines
138 B
Bash
#!/system/bin/sh
|
|
grep __PKGNAME /proc/mounts | while read -r line; do
|
|
line=${line#*' '}
|
|
line=${line%%' '*}
|
|
umount -l ${line%%\\*}
|
|
done
|