Add speak-countdown.ps1

This commit is contained in:
Markus Fleschutz
2021-04-08 13:06:38 +02:00
parent 39d253adf3
commit f18ff005f6
3 changed files with 22 additions and 0 deletions

20
Scripts/speak-countdown.ps1 Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/pwsh
<#
.SYNTAX speak-countdown.ps1 [start-number]
.DESCRIPTION speaks a countdown by text-to-speech (TTS)
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
param([int]$StartNumber = 10)
try {
for ([int]$i = $StartNumber; $i -gt 0; $i--) {
& "$PSScriptRoot/speak-english.ps1" $i
start-sleep -milliseconds 1000
}
exit 0
} catch {
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}