summaryrefslogtreecommitdiff
path: root/.local/bin/shorts/adbs
blob: 20bba2b174974c6d9e6676a52d1b67d254d50c33 (plain)
1
2
3
4
5
6
7
#!/bin/sh

if [ -n "$ADB_DEVICE" ]; then
	adb -s "${ADB_DEVICE}" shell "$@"
else
	adb shell "$@"
fi