PowerShell/Scripts/list-headlines.ps1

38 lines
978 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
2023-08-14 21:15:00 +02:00
.PARAMETER maxCount
2021-12-04 15:37:22 +01:00
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
#>
2023-08-14 21:15:00 +02: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-14 21:15:00 +02:00
[xml]$content = (Invoke-WebRequest -uri $RSS_URL -useBasicParsing).Content
[int]$count = 0
foreach ($item in $content.rss.channel.item) {
"❇️ $($item.title)"
2023-08-14 21:15:00 +02:00
$count++
if ($count -eq $maxCount) { break }
2021-12-04 15:37:22 +01:00
}
2023-08-14 21:15:00 +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
}