标签: linux bash shell curl
我的示例时区网站就像this,如何在bash终端控制台中使用curl来获取当前时区?
curl
答案 0 :(得分:0)
curl -sS https://www.timeanddate.com/time/zone/canada/toronto | grep -o '"/time/zones/[a-z]\+[^>]*>[^<]*' | head -n1 | grep -o '[^>]*$'
输出:EST
EST
如果您需要网站上的其他值,请根据您的需要调整正则表达式。
修改:-sS
-sS