cURL awk { 打印 } 帮助
我在一个文件中有这个:
<yweather:condition text="Partly Cloudy" code="29" temp="56" date="Wed, 23 Feb 2011 6:53 pm MST" />
我正在使用此代码来尝试打印“部分多云”,尽管只有“部分”没有被打印。
grep "yweather:condition" ~/Documents/weather.dat | awk '{ print $2 }' | awk 'BEGIN { FS = "[\"]" } ; { print $2 } '
希望有人能解释如何打印这两个词。谢谢!
I have this in a file:
<yweather:condition text="Partly Cloudy" code="29" temp="56" date="Wed, 23 Feb 2011 6:53 pm MST" />
I'm using this code to try and print "Partly Cloudy", although only "Partly" is not getting printed.
grep "yweather:condition" ~/Documents/weather.dat | awk '{ print $2 }' | awk 'BEGIN { FS = "[\"]" } ; { print $2 } '
Hopefully someone can explain how to get both words to print. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
取代这一切
Replaces all that
如果您遇到更复杂的情况,请使用真正的 XML/HTML 解析器。
If you have more complex situations, use a real XML/HTML parser.