mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-23 05:01:37 +01:00
Replace check-headlines.ps1 by list-headlines.ps1
This commit is contained in:
parent
97b407536d
commit
ba14c43c24
@ -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 }
|
||||
}
|
Loading…
Reference in New Issue
Block a user