PowerShell/Scripts/list-headlines.ps1

38 lines
975 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
2023-08-06 21:35:36 +02:00
PS> ./list-headlines.ps1
Niger coup: Ecowas deadline sparks anxiety in northern Nigeria
...
2021-12-04 15:37:22 +01:00
.LINK
https://github.com/fleschutz/PowerShell
2022-01-29 12:47:46 +01:00
.NOTES
2022-09-06 21:42:04 +02:00
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 {
2023-08-06 21:35:36 +02:00
[xml]$Content = (Invoke-WebRequest -uri $RSS_URL -useBasicParsing).Content
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 }
}
2023-08-06 21:35:36 +02:00
$Source = $Content.rss.channel.title
$Date = $Content.rss.channel.pubDate
"(by $Source as of $Date)"
2021-12-04 15:37:22 +01:00
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
}