2022-08-08 20:46:08 +03:00

5 lines
154 B
Bash

#!/system/bin/sh
grep com.google.android.apps.youtube.music /proc/mounts | while read -r line; do
echo "$line" | cut -d" " -f2 | xargs -r umount -l
done