1#! /bin/bash 2# interactive version of run 3 4trap "exit;" SIGINT SIGTERM 5 6while true 7do 8 ${ANDROID_BUILD_TOP}/packages/modules/Bluetooth/system/gd/cert/run "$@" 9 python3 ${ANDROID_BUILD_TOP}/packages/modules/Bluetooth/system/gd/cert/change_waiter.py ${ANDROID_BUILD_TOP}/packages/modules/Bluetooth/system 10done 11