Update the comment based help

This commit is contained in:
Markus Fleschutz 2021-10-16 12:31:08 +02:00
parent 09aa1fee33
commit 053b26c578
7 changed files with 26 additions and 12 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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