2021-12-04 15:37:22 +01:00
|
|
|
|
<#
|
|
|
|
|
.SYNOPSIS
|
2022-02-14 12:41:38 +01:00
|
|
|
|
Lists the latest headlines
|
2021-12-04 15:37:22 +01:00
|
|
|
|
.DESCRIPTION
|
2022-02-14 12:41:38 +01:00
|
|
|
|
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
|
2022-02-14 12:41:38 +01:00
|
|
|
|
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
|
|
|
|
#>
|
|
|
|
|
|
2022-02-14 12:41:38 +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
|
2022-02-14 12:41:38 +01:00
|
|
|
|
"`n🌍 $($Content.rss.channel.title) 🌏"
|
|
|
|
|
|
2021-12-04 15:37:22 +01:00
|
|
|
|
[int]$Count = 0
|
|
|
|
|
foreach ($item in $Content.rss.channel.item) {
|
2022-02-14 12:41:38 +01:00
|
|
|
|
"→ $($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
|
|
|
|
|
}
|