Update speak-countdown.ps1

This commit is contained in:
Markus Fleschutz 2022-05-31 14:30:22 +02:00 committed by GitHub
parent 47aa344912
commit dfad9e5084
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,15 +2,15 @@
.SYNOPSIS .SYNOPSIS
Speaks a countdown by text-to-speech Speaks a countdown by text-to-speech
.DESCRIPTION .DESCRIPTION
This PowerShell script speaks a countdown starting from a given number (10 by default) by text-to-speech (TTS). This PowerShell script speaks a countdown by text-to-speech (TTS) starting from a given number.
.PARAMETER StartNumber .PARAMETER StartNumber
Specifies the number to start from Specifies the number to start from (10 by default)
.EXAMPLE .EXAMPLE
PS> ./speak-countdown 60 PS> ./speak-countdown 60
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES
Author: Markus Fleschutz / License: CC0 Author: Markus Fleschutz | License: CC0
#> #>
param([int]$StartNumber = 10) param([int]$StartNumber = 10)