1 2 3 4 5 6 7
#!/bin/sh if [ -n "$ADB_DEVICE" ]; then adb -s "${ADB_DEVICE}" shell "$@" else adb shell "$@" fi