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

android– 无法在bash脚本中运行adb命令,第1张

概述我正在尝试从adbshell启动Android网络共享设置.这样做的主要目的是通过运行shell脚本来启用USB网络共享模式.我在我的Ubuntu终端(12.04)上使用以下命令集:adbshellamstart-ncom.android.settings/.TetherSettingssleep7inputtap162159inputtap385607当命令逐个

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

adb shellam start -n com.androID.settings/.TetherSettingssleep 7input tap 162 159input tap 385 607

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

#!/bin/shadb shellam start -n com.androID.settings/.TetherSettingssleep 7input tap 162 159input tap 385 607

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

编辑:更新的脚本: –

#!/bin/shcd /home/evinish/documents/AndroID/adt-bundle-linux-x86_64-20130219/sdk/platform-toolsadb shell "am start -n com.androID.settings/.TetherSettingssleep 7input tap 162 159input tap 385 607"

解决方法:

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

adb shell "am start -n com.androID.settings/.TetherSettingssleep 7input tap 162 159input tap 385 607"
总结

以上是内存溢出为你收集整理的android – 无法在bash脚本中运行adb命令全部内容,希望文章能够帮你解决android – 无法在bash脚本中运行adb命令所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1096087.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存