mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-13 17:38:45 +01:00
Update the comment based help
This commit is contained in:
parent
09aa1fee33
commit
053b26c578
@ -1,8 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks a countdown by text-to-speech (TTS)
|
||||
Speaks a countdown by text-to-speech
|
||||
.DESCRIPTION
|
||||
speak-countdown.ps1 [StartNumber]
|
||||
This scripts speaks a countdown by text-to-speech (TTS).
|
||||
.PARAMETER StartNumber
|
||||
Specifies the number to start from
|
||||
.EXAMPLE
|
||||
PS> ./speak-countdown 60
|
||||
.NOTES
|
||||
|
@ -1,8 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the given text with an English text-to-speech (TTS) voice
|
||||
Speaks text with an English text-to-speech voice
|
||||
.DESCRIPTION
|
||||
speak-english.ps1 [<text>]
|
||||
This scripts speaks the given text with an English text-to-speech (TTS) voice.
|
||||
.PARAMETER text
|
||||
Specifies the text to speak
|
||||
.EXAMPLE
|
||||
PS> ./speak-english "Hello World"
|
||||
.NOTES
|
||||
|
@ -1,8 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the given text with a French text-to-speech (TTS) voice
|
||||
Speaks text with a French text-to-speech voice
|
||||
.DESCRIPTION
|
||||
speak-french.ps1 [<text>]
|
||||
This script speaks the given text with a French text-to-speech (TTS) voice
|
||||
.PARAMETER text
|
||||
Specifies the text to speak
|
||||
.EXAMPLE
|
||||
PS> ./speak-french Salut
|
||||
.NOTES
|
||||
|
@ -1,8 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the given text with a German text-to-speech (TTS) voice
|
||||
Speaks text with a German text-to-speech voice
|
||||
.DESCRIPTION
|
||||
speak-german.ps1 [<text>]
|
||||
This script speaks the given text with a German text-to-speech (TTS) voice.
|
||||
.PARAMETER text
|
||||
Specifies the text to speak
|
||||
.EXAMPLE
|
||||
PS> ./speak-german Hallo
|
||||
.NOTES
|
||||
|
@ -1,8 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the given text with an Italian text-to-speech (TTS) voice
|
||||
Speaks text with an Italian text-to-speech voice
|
||||
.DESCRIPTION
|
||||
speak-italian.ps1 [<text>]
|
||||
This script speaks the given text with an Italian text-to-speech (TTS) voice.
|
||||
.PARAMETER text
|
||||
Specifies the text to speak
|
||||
.EXAMPLE
|
||||
PS> ./speak-italian Ciao
|
||||
.NOTES
|
||||
|
@ -1,8 +1,10 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Speaks the given text with a Spanish text-to-speech (TTS) voice
|
||||
Speaks text with a Spanish text-to-speech voice
|
||||
.DESCRIPTION
|
||||
speak-spanish.ps1 [<text>]
|
||||
This script speaks the given text with a Spanish text-to-speech (TTS) voice.
|
||||
.PARAMETER text
|
||||
Specifies the text to speak
|
||||
.EXAMPLE
|
||||
PS> ./speak-spanish Hola
|
||||
.NOTES
|
||||
|
@ -3,6 +3,8 @@
|
||||
Speaks the given text by the default text-to-speech (TTS) voice
|
||||
.DESCRIPTION
|
||||
speak-text.ps1 [<text>]
|
||||
.PARAMETER text
|
||||
Specifies the text to speak
|
||||
.EXAMPLE
|
||||
PS> ./speak-text "Hello World"
|
||||
.NOTES
|
||||
|
Loading…
Reference in New Issue
Block a user