PowerShell/scripts/list-headlines.ps1

37 lines
1.0 KiB
PowerShell
Raw Normal View History

2023-10-31 12:33:36 +01:00
<#
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 headlines by using a RSS (Really Simple Syndication) feed.
2021-12-04 15:37:22 +01:00
.PARAMETER RSS_URL
Specifies the URL to the RSS feed (Yahoo World News by default)
.PARAMETER maxLines
Specifies the maximum number of lines to list (24 by default)
2021-12-04 15:37:22 +01:00
.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://news.yahoo.com/rss/world", [int]$maxLines = 24)
2021-12-04 15:37:22 +01:00
try {
[xml]$content = (Invoke-WebRequest -URI $RSS_URL -useBasicParsing).Content
[int]$count = 1
2023-08-14 21:15:00 +02:00
foreach ($item in $content.rss.channel.item) {
"❇️ $($item.title)"
if ($count++ -eq $maxLines) { break }
2021-12-04 15:37:22 +01:00
}
$source = $content.rss.channel.title
$date = $content.rss.channel.pubDate
2023-08-14 21:15:00 +02:00
" (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
}