Skip to content

Instantly share code, notes, and snippets.

View Emonshr's full-sized avatar
💭
Awaking For The Perfection

Emon Sahariar Emonshr

💭
Awaking For The Perfection
View GitHub Profile
@Emonshr
Emonshr / nix_based_tui_feed_diff_doer.sh
Last active January 13, 2023 16:27 — forked from megasaturnv/parseRssFeed.sh
Shell script / one-liner to parse and display an rss feed. May require tweaking for RSS feeds without newlines or where <title> and <description> are on separate lines to their text.
#!/bin/sh
#Megasaturnv 2017-07-28
#emonshr 13-01-23 (DD-MM-YY)
#Url of the RSS feed
RSS_URL="https://feeds.bbci.co.uk/news/world/rss.xml"
##Commented version:
#Download the rss feed
curl --silent "$RSS_URL" | \