2

我想写一个bash脚本,可以解析android appstore中应用的版本号。例如这个应用程序,https://play.google.com/store/apps/details?id=com.alphonso.pulse&hl=en

如何从页面右侧的当前版本标题中获取值“3.0.6”?

4

1 回答 1

5
$ site=https://play.google.com/store/apps/details?id=com.alphonso.pulse

$ curl -s $site | sed -rn 's/.*(Current Version:)[^0-9]*([0-9.]+).*/\1\2/p'
Current Version:3.0.6 

$ curl -s $site | sed -rn 's/.*Current Version:[^0-9]*([0-9.]+).*/\1/p'
3.0.6
于 2013-01-18T21:57:20.910 回答