Replace check-headlines.ps1 by list-headlines.ps1

This commit is contained in:
Markus Fleschutz 2022-02-14 12:41:38 +01:00
parent 97b407536d
commit ba14c43c24

View File

@ -1,27 +1,29 @@
<#
.SYNOPSIS
Checks the latests headlines
Lists the latest headlines
.DESCRIPTION
This script tells the latest headlines by text-to-speech (TTS).
This PowerShell script lists the latest RSS feed news.
.PARAMETER RSS_URL
Specifies the URL to the RSS feed
.PARAMETER MaxCount
Specifies the number of news to list
.EXAMPLE
PS> ./check-headlines
PS> ./list-headlines
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz / License: CC0
#>
param([string]$RSS_URL = "https://yahoo.com/news/rss/world", [int]$MaxCount = 8)
param([string]$RSS_URL = "https://yahoo.com/news/rss/world", [int]$MaxCount = 20)
try {
[xml]$Content = (invoke-webRequest -uri $RSS_URL -useBasicParsing).Content
"`n🌍 $($Content.rss.channel.title) 🌏"
[int]$Count = 0
foreach ($item in $Content.rss.channel.item) {
& "$PSScriptRoot/give-reply.ps1" "$($item.title)"
"$($item.title)"
$Count++
if ($Count -eq $MaxCount) { break }
}