2023-10-31 12:33:36 +01:00
|
|
|
|
<#
|
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
|
2023-11-24 11:43:46 +01:00
|
|
|
|
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
|
2023-11-24 11:43:46 +01:00
|
|
|
|
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
|
|
|
|
#>
|
|
|
|
|
|
2023-11-24 11:43:46 +01:00
|
|
|
|
param([string]$RSS_URL = "https://news.yahoo.com/rss/world", [int]$maxLines = 24)
|
2021-12-04 15:37:22 +01:00
|
|
|
|
|
|
|
|
|
try {
|
2023-11-24 11:43:46 +01:00
|
|
|
|
[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) {
|
2023-08-07 15:11:32 +02:00
|
|
|
|
"❇️ $($item.title)"
|
2023-11-24 11:43:46 +01:00
|
|
|
|
if ($count++ -eq $maxLines) { break }
|
2021-12-04 15:37:22 +01:00
|
|
|
|
}
|
2023-11-24 11:43:46 +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
|
|
|
|
|
}
|