Skip to content

Instantly share code, notes, and snippets.

View stak's full-sized avatar
☄️

Shutaro Takimoto stak

☄️
  • Tokyo, Japan
View GitHub Profile
@stak
stak / remove-osx-android-env.sh
Created May 24, 2016 06:21
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 ;;