1
0
hugo/content/blog/2016-10-07-xmllint.md

19 lines
568 B
Markdown
Raw Normal View History

2024-04-23 13:21:26 +00:00
+++
date = "2016-10-07"
tags = ["memo"]
title = "xmllint"
slug = "xmllint"
+++
Web RSSからデータを取るには`xmllint`などを使えば便利ですが、使いこなすにはちょっとしたコツが必要です。
主に以下のオプション, Exampleを知れば、そこそこ使えると思います。
```bash
$ curl -sL https://syui.gitlab.io/blog/index.xml
$ curl -sL !$ | xmllint --format - >! index.xml
$ echo 'cat /rss/channel/item[0]/title' | xmllint --shell index.xml
$ xmllint --xpath '/rss/channel/item[1]/title/text()' index.xml
```