Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Androidアプリストアのアプリのバージョン番号を解析できるbashスクリプトを作成したいと思います。たとえば、このアプリ、https://play.google.com/store/apps/details?id = com.alphonso.pulse&hl = en
ページの右側にある現在のバージョンのヘッダーから値「3.0.6」を取得するにはどうすればよいですか?
$ 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