Update list-news.ps1

This commit is contained in:
Markus Fleschutz 2024-02-12 11:45:05 +01:00
parent 15f69e32aa
commit 0c6881f2dc

View File

@ -11,7 +11,7 @@
Specifies the speed to write the text (10 ms by default) Specifies the speed to write the text (10 ms by default)
.EXAMPLE .EXAMPLE
PS> ./list-news.ps1 PS> ./list-news.ps1
Deadly Mediterranean wildfires kill more than 40 09:15 Deadly Mediterranean wildfires kill more than 40
... ...
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
@ -25,12 +25,13 @@ try {
[xml]$content = (Invoke-WebRequest -URI $RSS_URL -useBasicParsing).Content [xml]$content = (Invoke-WebRequest -URI $RSS_URL -useBasicParsing).Content
[int]$count = 1 [int]$count = 1
foreach ($item in $content.rss.channel.item) { foreach ($item in $content.rss.channel.item) {
& "$PSScriptRoot/write-typewriter.ps1" "❇️ $($item.title)" $speed $title = $item.title
$time = $item.pubDate.Substring(11, 5)
& "$PSScriptRoot/write-typewriter.ps1" "❇️ $time $title" $speed
if ($count++ -eq $maxLines) { break } if ($count++ -eq $maxLines) { break }
} }
$source = $content.rss.channel.title $URL = $content.rss.channel.link
$date = $content.rss.channel.pubDate " (Times in UTC | Read more: $URL)"
" (by $source as of $date)"
exit 0 # success exit 0 # success
} catch { } catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])" "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"