PowerShell/Scripts/news.ps1

23 lines
590 B
PowerShell
Raw Normal View History

2020-06-19 17:52:01 +02:00
#!/snap/bin/powershell
#
2020-09-29 20:05:52 +02:00
# Syntax: ./news.ps1
2020-06-19 17:52:01 +02:00
# Description: print the latest news
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
2020-09-29 20:05:52 +02:00
2020-07-13 16:38:29 +02:00
#$RSS_URL = "http://feeds.skynews.com/feeds/rss/world.xml"
$RSS_URL = "https://yahoo.com/news/rss/world"
# $RSS_URL = "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml"
[xml]$FileContent = (Invoke-WebRequest -Uri $RSS_URL).Content
write-host ""
write-host "+++ " $FileContent.rss.channel.title " +++"
write-host ""
2020-06-19 17:52:01 +02:00
foreach ($item in $FileContent.rss.channel.item) {
2020-07-13 16:38:29 +02:00
write-host "* "$item.title
2020-06-19 17:52:01 +02:00
}
exit 0