rentgendroid/android/conf/press_key.sh
Andrii Dokhniak 8d528f294a upd
2025-06-09 16:16:14 +02:00

10 lines
352 B
Bash

#!/bin/bash
# https://stackoverflow.com/questions/7789826/adb-shell-input-events
if [ "$1" = "Enter" ]; then
/opt/android-sdk-linux/platform-tools/adb shell input keyevent 66
elif [ "$1" = "Backspace" ]; then
/opt/android-sdk-linux/platform-tools/adb shell input keyevent 67
else
/opt/android-sdk-linux/platform-tools/adb shell input text "'$1'"
fi