Skip to content

Instantly share code, notes, and snippets.

@dkittell
Created December 15, 2015 19:55
Show Gist options
  • Save dkittell/ca4025e4e78ccecbb5f0 to your computer and use it in GitHub Desktop.
Save dkittell/ca4025e4e78ccecbb5f0 to your computer and use it in GitHub Desktop.
PowerShell - RSS Feed Reader
clear
$rssFeedURL = 'http://www.kittell.net/feed/'
$rssFeed = 1(New-Object System.Net.WebClient).DownloadString($rssFeedURL)
$rssFeed.rss.channel.item | Select-Object title, link -First 5 | Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment