有没有一种编程方式可以找出上游目前支持哪些 Ubuntu 版本?类似 HTTP(s) 服务,它返回
$ curl https://get_supported_ubuntu_versions.com?q=all
xenial zesty artful
也许?
答案1
我想你需要这样的东西curl http://releases.ubuntu.com/ | grep "The following releases of Ubuntu are available" -A 6 | gawk -F\> '{print $3}' | gawk -F\< '{print $1}' | grep -v '^$'
。目前它的输出列出了以下版本:
- Ubuntu 17.04(Zesty Zapus)
- Ubuntu 16.04.3 LTS(Xenial Xerus)
- Ubuntu 14.04.5 LTS(Trusty Tahr)
- Ubuntu 12.04.5 LTS(精准穿山甲)
也许它看起来不太专业,但我认为它可以解决你的问题。