mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
29 lines
709 B
PowerShell
Executable File
29 lines
709 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
Speaks a countdown by text-to-speech
|
|
.DESCRIPTION
|
|
This scripts speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS).
|
|
.PARAMETER StartNumber
|
|
Specifies the number to start from
|
|
.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
|
|
}
|