add scritp

This commit is contained in:
Jean-Marie Mineau 2025-03-28 09:43:21 +01:00
commit df5cca3183
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
6 changed files with 90 additions and 0 deletions

8
delate_emulators.sh Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/bash
BASENAME='root34'
MAX_EMU=10
for i in $(seq 1 "${MAX_EMU}"); do
avdmanager delete avd --name "${BASENAME}-${i}"
done