mirror of
https://github.com/j-hc/revanced-magisk-module.git
synced 2025-05-19 15:57:08 +02:00
5 lines
154 B
Bash
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
|