如何使用 shell 脚本从命令行启动 Android 模拟器后执行下一个命令?
我是 Shell 脚本编程的新手,也许你可以帮助我解决我的疑问。
我的要求是在 Android 应用程序构建中,启动模拟器并从命令行将“.apk”安装到模拟器中,因为我需要编写一个 shell 脚本,在其中我能够从命令行在模拟器中构建、安装和运行应用程序通过单独的命令,但是当我尝试将这些命令集成到 shell 脚本中时,模拟器在启动时获得控制权,之后没有命令(安装和运行)起作用。你能告诉我如何解决这个问题
吗?
I am a newbie in Shell script programming, and maybe you can help me with my query.
My requirement is in Android app build, launch emulator and install the ".apk" into emulator from command line for that I need to write a shell script in which I am able to build, install and run the app in emulator from the command line by individual command, but when i try to integrate those commands into a shell script, emulator taking the control when launching, no commands (install and run) are working after that. can you tell me how sort out this issue
Sri
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试添加“&”模拟器行命令后的符号。
>命令1 &
>command2
这使得
command1
进入后台,并且command2
可以运行。Try to add "&" symbol after emulator line command.
>command1 &
>command2
This makes
command1
to go to background, andcommand2
can be run.