如何使用 shell 脚本从命令行启动 Android 模拟器后执行下一个命令?

发布于 2024-12-12 07:57:24 字数 230 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-12-19 07:57:24

尝试添加“&”模拟器行命令后的符号。
>命令1 &
>command2

这使得 command1 进入后台,并且 command2 可以运行。

Try to add "&" symbol after emulator line command.
>command1 &
>command2

This makes command1 to go to background, and command2 can be run.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文