PowerShell/Scripts/list-news.ps1

26 lines
608 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2020-12-29 15:21:04 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX list-news.ps1 [<RSS-URL>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION lists the latest news
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:21:04 +01:00
#>
2021-02-18 20:17:55 +01:00
param($RSS_URL = "https://yahoo.com/news/rss/world")
2020-12-29 15:21:04 +01:00
try {
[xml]$Content = (invoke-webRequest -URI $RSS_URL).Content
write-output ""
write-output "+++ $($Content.rss.channel.title) +++"
write-output ""
foreach ($item in $Content.rss.channel.item) {
write-output "* $($item.title)"
}
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-29 15:21:04 +01:00
exit 1
}