mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-03 05:31:03 +02:00
Added watch-news.ps1
This commit is contained in:
parent
60cc93dbbd
commit
1f51d6ab66
@ -38,9 +38,8 @@ try {
|
||||
if (-not(Test-Path "$path" -pathType Container)) { throw "The path to 📂$path doesn't exist (yet)" }
|
||||
$path = Resolve-Path "$path"
|
||||
Set-Location "$path"
|
||||
"📂$path"
|
||||
Write-Host "📂$path • on branch: " -noNewline
|
||||
|
||||
Write-Host -noNewline " on branch: "
|
||||
& git status --short --branch --show-stash
|
||||
exit 0 # success
|
||||
} catch {
|
||||
|
@ -1,6 +1,6 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
List commits live in real-time.
|
||||
Show commits live in real-time.
|
||||
.DESCRIPTION
|
||||
This PowerShell script permanently lists the latest commit in a Git repository in real-time.
|
||||
.PARAMETER pathToRepo
|
36
scripts/watch-news.ps1
Normal file
36
scripts/watch-news.ps1
Normal file
@ -0,0 +1,36 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists the latest headlines
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists the latest headlines by using a RSS (Really Simple Syndication) feed.
|
||||
.PARAMETER RSS_URL
|
||||
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)
|
||||
.EXAMPLE
|
||||
PS> ./list-headlines.ps1
|
||||
❇️ Niger coup: Ecowas deadline sparks anxiety in northern Nigeria
|
||||
...
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
param([string]$RSS_URL = "https://news.yahoo.com/rss/world", [int]$maxLines = 24)
|
||||
|
||||
try {
|
||||
[xml]$content = (Invoke-WebRequest -URI $RSS_URL -useBasicParsing).Content
|
||||
[int]$count = 1
|
||||
foreach ($item in $content.rss.channel.item) {
|
||||
& "$PSScriptRoot/write-animated.ps1" "* $($item.title) *"
|
||||
if ($count++ -eq $maxLines) { break }
|
||||
}
|
||||
$source = $content.rss.channel.title
|
||||
$date = $content.rss.channel.pubDate
|
||||
" (by $source as of $date)"
|
||||
exit 0 # success
|
||||
} catch {
|
||||
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Loading…
Reference in New Issue
Block a user