-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release notes pages #4
Comments
I have also written a script which crawls sitemaps and collects release notes. function process() {
local target_url=$1
for url in $(curl -s ${target_url} | xmllint --nowarning --xpath '/*[local-name()="sitemapindex"]/*[local-name()="sitemap"]/*[local-name()="loc"]/text()' - )
do
# echo "# in ${url}"
curl -s ${url} | xmllint --xpath '/*[local-name()="urlset"]/*[local-name()="url"]/*[local-name()="loc"]/text()' - | grep -E 'release-notes|security-bulletins|permissions-change-log'
process ${url}
done
}
process https://cloud.google.com/sitemap.xml Result
|
@apstndb God loves us. Today he created a new page with an index .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Not all release notes have channels, so I have prepared a list of release note pages
Is this useful for you?
Best regards,
Kamil
The text was updated successfully, but these errors were encountered: