PowerShell/Scripts/speak-countdown.ps1
2021-10-04 21:29:23 +02:00

27 lines
588 B
PowerShell
Executable File

<#
.SYNOPSIS
Speaks a countdown by text-to-speech (TTS)
.DESCRIPTION
speak-countdown.ps1 [StartNumber]
.EXAMPLE
PS> ./speak-countdown 60
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([int]$StartNumber = 10)
try {
for ([int]$i = $StartNumber; $i -gt 0; $i--) {
& "$PSScriptRoot/speak-english.ps1" $i
start-sleep -milliseconds 200
}
& "$PSScriptRoot/speak-english.ps1" "zero"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}