Home | History | Annotate | Download | only in tools

Lines Matching refs:adb

10     printf "Use \`adb shell 'pm list packages'\` to get a listing.\n\n"
13 if ! command -v adb > /dev/null 2>&1; then
14 if [ -x "${ANDROID_SDK_ROOT}/platform-tools/adb" ]; then
15 adb() {
16 "${ANDROID_SDK_ROOT}/platform-tools/adb" "$@"
19 echo 'adb missing'
30 adb shell "setprop '${key}' '${remote_path}'"
49 test '0' = "$(adb shell "test -e \"$1\"; echo \$?")";
56 adb shell "setprop '${key}' ''"
65 X="$(adb shell "du \"$1\" 2> /dev/null | dd bs=1 count=1 2> /dev/null")"
69 # adb shell "wc -c \"$1\"" 2> /dev/null | awk '{print $1}'
76 adb shell "setprop '${key}' ''"
82 adb shell "setprop '${key}' ''"
86 adb pull "$remote_path" "$local_path"
88 printf "something went wrong with `adb pull`."
91 adb shell rm "$remote_path"