mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 06:48:25 +02:00
Update list-news.ps1
This commit is contained in:
parent
15f69e32aa
commit
0c6881f2dc
@ -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])"
|
||||||
|
Loading…
Reference in New Issue
Block a user