Skip to content

Instantly share code, notes, and snippets.

@mehdiamiri9
mehdiamiri9 / remove-osx-android-env.sh
Created February 17, 2026 23:29 — forked from stak/remove-osx-android-env.sh
Remove Android Studio and all related files completely on OSX.
#!/bin/bash
function confirm {
MSG=$1
while :
do
echo -n "${MSG} [Y/N]: "
read ans
case $ans in
[yY]) return 0 ;;