To specify your own custom output format, use the special %-notation:
可以自定义输出格式,使用%加上如下字符:
c Weather condition, #天气图标
C Weather condition textual name, #天气英文单词
x Weather condition, plain-text symbol, #天气符号
h Humidity, #湿度
t Temperature (Actual), #实际温度
f Temperature (Feels Like), #体感温度
w Wind, #风向和风速
l Location, #位置
m Moon phase 🌑🌒🌓🌔🌕🌖🌗🌘, #月相
M Moon day, #不太清楚,貌似不是阴历
p Precipitation (mm/3 hours), #降水量
P Pressure (hPa), #压力
D Dawn*, #黎明
S Sunrise*, #日出
z Zenith*, #天顶(太阳或月亮在天空中的最高点)
s Sunset*, #日落
d Dusk*, #黄昏
T Current time*, #当前时间
Z Local timezone. #本地时区
(*times are shown in the local timezone) #会显示当前时区的时间
以上内容整理自https://github.com/chubin/wttr.in
以下是几种常用格式
curl wttr.in/~%E9%83%91%E5%B7%9E%E5%A4%A7%E5%AD%A6?format="%l:+%C+%t(%f)+%w\n"
curl wttr.in/?format="%T+%l:+%C+%t(%f)+%w\n"
echo "Weather" "$(curl wttr.in/?format="%T+%l:+%C+%t(%f)+%w")"
echo "$(curl wttr.in/?format="Weather\n%T+%l\n%C+%t(%f)+%w")"
以下是它们的输出
郑州大学: Sunny +37°C(+36°C) ←7km/h
17:07:29+0800 Zhengzhou, China: Sunny +37°C(+36°C) ←7km/h
Weather 17:07:29+0800 Zhengzhou, China: Sunny +37°C(+36°C) ←7km/h
Weather
16:53:26+0800 Zhengzhou, China
Sunny +37°C(+36°C) ←7km/h