mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-16 04:53:52 +01:00
27 lines
588 B
PowerShell
Executable File
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
|
|
}
|