2022-08-13 03:18:51 +03:00

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