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.
对不起,我对编码很陌生。我只是想删除字符串末尾的 CST。我试图得到的最终输出是“日落:中部标准时间下午 4:38”。排除引号。
这是我在 shell 中使用的代码。
curl http://m.wund.com/US/MN/Winona.html | grep 'Sunset' | sed -e :a -e 's/<[^>]*>//g;/</N;//ba' | sed -e 's/Sunset/Sunset: /g' | sed -e 's/PST//g'
只是改变:
... | sed -e 's/PST//g'
至
... | sed -e 's/CST//g'
您可能还想调用curl -s而不是仅仅curl省略所有下载内容。
curl -s
curl