PowerShell/Scripts/list-headlines.ps1

35 lines
820 B
PowerShell
Raw Normal View History

2021-12-04 15:37:22 +01:00
<#
.SYNOPSIS
Lists the latest headlines
2021-12-04 15:37:22 +01:00
.DESCRIPTION
This PowerShell script lists the latest RSS feed news.
2021-12-04 15:37:22 +01:00
.PARAMETER RSS_URL
Specifies the URL to the RSS feed
.PARAMETER MaxCount
Specifies the number of news to list
.EXAMPLE
PS> ./list-headlines
2021-12-04 15:37:22 +01:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
Author: Markus Fleschutz / License: CC0
2021-12-04 15:37:22 +01:00
#>
param([string]$RSS_URL = "https://yahoo.com/news/rss/world", [int]$MaxCount = 20)
2021-12-04 15:37:22 +01:00
try {
[xml]$Content = (invoke-webRequest -uri $RSS_URL -useBasicParsing).Content
"`n🌍 $($Content.rss.channel.title) 🌏"
2021-12-04 15:37:22 +01:00
[int]$Count = 0
foreach ($item in $Content.rss.channel.item) {
"$($item.title)"
2021-12-04 15:37:22 +01:00
$Count++
if ($Count -eq $MaxCount) { break }
}
exit 0 # success
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2021-12-04 15:37:22 +01:00
exit 1
}