使用 shell 命令获取 android:versionName
我想使用 shell 命令从 AndroidManist.xml 文件中获取 versionName。 我一直在尝试使用 grep 和 with:
grep versionName ./AndroidManifest.xml
我得到了这一行:
android:versionName="1.0">
是否有可能以某种方式将其缩小到 1.0 ?
提前致谢
I want to get the versionName from the AndroidManist.xml file with a shell command.
I've been trying to use grep and with:
grep versionName ./AndroidManifest.xml
I'm getting this line:
android:versionName="1.0">
Is it possible to narrow it down to 1.0 somehow?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个:
您可能想将其放入文件中:
例如:VersionNum.pl
然后只需
chmod 755 VersionNumber.pl
并将其与VersionNumber.pl AndroidManifest.xml
一起使用Try this :
You may want to put this into a file :
Ex: VersionNum.pl
Then simply
chmod 755 VersionNumber.pl
and use it withVersionNumber.pl AndroidManifest.xml
可以从您最初的建议中得出较短的版本:
A shorter version could be derived from your original suggestion: