10 lines
137 B
Bash
10 lines
137 B
Bash
#!/bin/bash
|
|
|
|
#Prüfung hinzugefügt, jh 03.04.2020
|
|
|
|
APP=/Applications/Android\ Studio.app
|
|
|
|
if [[ -d "$APP" ]]; then rm -rf "$APP" ; fi
|
|
|
|
|