2022-09-11 22:19:00 +03:00

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