relpipe-data/examples/atom-xmltable.sh
author František Kučera <franta-hg@frantovo.cz>
Thu, 25 Jul 2019 22:16:12 +0200
branchv_0
changeset 263 8bf13358a50a
permissions -rwxr-xr-x
examples: relpipe-in-xmltable

#!/bin/bash

get_atom() {
	wget --quiet --output-document - https://blog.frantovo.cz/agregace/c/?p=10
	# wget --quiet --output-document - https://blog.frantovo.cz/agregace/k/
	# cat atom.xml
}

get_atom \
	| relpipe-in-xmltable \
		--namespace "a" "http://www.w3.org/2005/Atom" \
		--relation "/a:feed/a:title" --name-is-xpath \
			--records "//a:entry" \
			--attribute "published" string "a:published" \
			--attribute "title" string "a:title" \
			--attribute "url" string "a:link/@href" \
		--relation "metadata" \
			--records "." \
			--attribute "id" string "a:id" \
			--attribute "subtitle" string "a:subtitle" \
	| relpipe-out-tabular