其他分享
首页 > 其他分享> > android – 无法在bash脚本中运行adb命令

android – 无法在bash脚本中运行adb命令

作者:互联网

我正在尝试从adb shell启动Android网络共享设置.这样做的主要目的是通过运行shell脚本来启用USB网络共享模式.我在我的Ubuntu终端(12.04)上使用以下命令集:

adb shell
am start -n com.android.settings/.TetherSettings
sleep 7
input tap 162 159
input tap 385 607

当命令逐个执行时,此方法可以正常工作,但我无法将它们作为普通的shell脚本运行.请帮忙!
这是完整的脚本:

#!/bin/sh
adb shell
am start -n com.android.settings/.TetherSettings
sleep 7
input tap 162 159
input tap 385 607

我想,它无法在我的系统中找到adb的路径.我已经尝试用SDK目录中的adb工具的实际路径替换第一行.那也行不通.有什么解决方法吗?
(对不起,如果这个问题看起来很愚蠢.我真是个新手来编写脚本!)

编辑:更新的脚本: –

#!/bin/sh
cd /home/evinish/Documents/Android/adt-bundle-linux-x86_64-20130219/sdk/platform-tools
adb shell "
am start -n com.android.settings/.TetherSettings
sleep 7
input tap 162 159
input tap 385 607
"

解决方法:

adb shell会在您的Android设备上打开一个shell.后续命令在该shell的上下文中输入.在远程命令周围添加引号:

adb shell "
am start -n com.android.settings/.TetherSettings
sleep 7
input tap 162 159
input tap 385 607
"

标签:android,bash,shell,adb,ubuntu-12-04
来源: https://codeday.me/bug/20191009/1875718.html