You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
470 B
22 lines
470 B
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
t=`mktemp -d -t adb-channel.XXXXXX`
|
|
|
|
remote=${1}
|
|
activity=${2}
|
|
delay=${3}
|
|
|
|
atexit() {
|
|
[ -z "${activity}" ] || adb shell am force-stop ${activity%%/*}
|
|
adb forward --remove localfilesystem:"${t}/sock"
|
|
rm -rf "${t}"
|
|
}
|
|
trap atexit EXIT
|
|
trap 'exit 0' HUP INT ALRM TERM
|
|
|
|
[ -z "${activity}" ] || adb shell -n am start -W ${activity}
|
|
[ -z "${delay}" ] || sleep "${delay}"
|
|
adb forward localfilesystem:"${t}/sock" "${remote}"
|
|
socat stdio unix:"${t}/sock"
|
|
|