Skip to content

Instantly share code, notes, and snippets.

@goooooouwa
Created January 14, 2020 09:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goooooouwa/217b44b12e12e691645d0f9f62e5961d to your computer and use it in GitHub Desktop.
Save goooooouwa/217b44b12e12e691645d0f9f62e5961d to your computer and use it in GitHub Desktop.
extract rss feed urls from opml file
cat Subscriptions.opml | grep xmlUrl | cut -d\" -f6
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
<head>
<title>Subscriptions - RSS</title>
</head>
<body>
<outline htmlUrl="http://newworldinteractive.com" title="Blog – New World Interactive" xmlUrl="http://newworldinteractive.com/blog/feed/" type="rss" text="Blog – New World Interactive"/>
<outline htmlUrl="http://www.steampowered.com/" title="New On Steam" xmlUrl="https://store.steampowered.com/feeds/newreleases.xml" type="rss" text="New On Steam"/>
<outline htmlUrl="https://goooooouwa.github.io/" title="Shunfa’s Blog" xmlUrl="https://goooooouwa.github.io/feed.xml" type="rss" text="Shunfa’s Blog"/>
<outline title="test" xmlUrl="tag/test" type="rss" text="test"/>
<outline text="Product Management" title="Product Management">
<outline htmlUrl="https://blog.aha.io" title="Aha! Blog" xmlUrl="https://blog.aha.io/feed/" type="rss" text="Aha! Blog"/>
<outline htmlUrl="https://www.intercom.com/blog" title="Inside Intercom" xmlUrl="https://www.intercom.com/blog/feed" type="rss" text="Inside Intercom"/>
<outline htmlUrl="https://www.kennorton.com" title="Ken Norton" xmlUrl="https://www.kennorton.com/feed.xml" type="rss" text="Ken Norton"/>
<outline htmlUrl="https://www.mindtheproduct.com" title="Mind the Product" xmlUrl="https://www.mindtheproduct.com/feed/" type="rss" text="Mind the Product"/>
<outline htmlUrl="https://www.producttalk.org" title="Product Talk" xmlUrl="https://www.producttalk.org/feed/" type="rss" text="Product Talk"/>
<outline htmlUrl="https://svpg.com" title="Silicon Valley Product Group" xmlUrl="https://svpg.com/feed/" type="rss" text="Silicon Valley Product Group"/>
<outline htmlUrl="https://medium.com/@jackiebo?source=rss-cbea485fd64d------2" title="Stories by Jackie Bavaro on Medium" xmlUrl="https://medium.com/feed/@jackiebo" type="rss" text="Stories by Jackie Bavaro on Medium"/>
<outline htmlUrl="https://medium.com/@joulee?source=rss-b8a4e5ae7490------2" title="Stories by Julie Zhuo on Medium" xmlUrl="https://medium.com/feed/@joulee" type="rss" text="Stories by Julie Zhuo on Medium"/>
<outline htmlUrl="https://medium.com/@rianvdm?source=rss-91e891fd703d------2" title="Stories by Rian van der Merwe on Medium" xmlUrl="https://medium.com/feed/@rianvdm" type="rss" text="Stories by Rian van der Merwe on Medium"/>
<outline htmlUrl="https://medium.com/@rrhoover?source=rss-c2146664c8e4------2" title="Stories by Ryan Hoover on Medium" xmlUrl="https://medium.com/feed/@rrhoover" type="rss" text="Stories by Ryan Hoover on Medium"/>
<outline htmlUrl="https://tpgblog.com" title="The Product Guy" xmlUrl="https://tpgblog.com/feed/" type="rss" text="The Product Guy"/>
</outline>
<outline text="Tech" title="Tech">
<outline htmlUrl="https://blog.codinghorror.com/" title="Coding Horror" xmlUrl="http://feeds.feedburner.com/codinghorror" type="rss" text="Coding Horror"/>
<outline htmlUrl="http://github.com/dylang/node-rss" title="Hacker Noon" xmlUrl="https://hackernoon.com/feed" type="rss" text="Hacker Noon"/>
<outline htmlUrl="https://marco.org/" title="Marco.org" xmlUrl="http://marco.org/rss" type="rss" text="Marco.org"/>
<outline htmlUrl="https://m.signalvnoise.com" title="Signal v. Noise" xmlUrl="https://m.signalvnoise.com/feed/" type="rss" text="Signal v. Noise"/>
<outline htmlUrl="https://www.williamlong.info/" title="月光博客" xmlUrl="http://feed.williamlong.info" type="rss" text="月光博客"/>
<outline htmlUrl="https://coolshell.cn" title="酷 壳 – CoolShell" xmlUrl="https://coolshell.cn/feed" type="rss" text="酷 壳 – CoolShell"/>
</outline>
</body>
</opml>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment