#!/bin/sh if [ -n "$ADB_DEVICE" ]; then adb -s "${ADB_DEVICE}" shell "$@" else adb shell "$@" fi