Skip to content

Instantly share code, notes, and snippets.

@SamRothCA
Created October 30, 2014 21:09
Show Gist options
  • Select an option

  • Save SamRothCA/2283d5c54ae7ec512942 to your computer and use it in GitHub Desktop.

Select an option

Save SamRothCA/2283d5c54ae7ec512942 to your computer and use it in GitHub Desktop.
Last 5 items from RSS feed
curl "RSS_URL_HERE" 2>/dev/null |
grep -o "<title>[^<]*</title>" |
grep -v "<title>FIRST_TITLE_REMOVER</title>" |
sed -e "s/.*\<title\>\(.*\)\<\/title\>.*/\1/g" |
nl -n rz -s " » " -w 2 |
fold -s -w 80 |
awk '!/^[0-9]+\ » / {$0=" "$0}1' |
awk '/^[0-9]+\ » / {$0="\n"$0}1' |
head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment