From 16489cb0b0abf1dd653d851ead0ec52a230425cc Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 6 Aug 2023 11:35:19 +0200 Subject: [PATCH] Update the speak-*.ps1 scripts --- Scripts/speak-arabic.ps1 | 2 +- Scripts/speak-checklist.ps1 | 2 +- Scripts/speak-countdown.ps1 | 2 +- Scripts/speak-danish.ps1 | 2 +- Scripts/speak-dutch.ps1 | 2 +- Scripts/speak-english.ps1 | 2 +- Scripts/speak-file.ps1 | 2 +- Scripts/speak-french.ps1 | 2 +- Scripts/speak-german.ps1 | 2 +- Scripts/speak-greek.ps1 | 2 +- Scripts/speak-hindi.ps1 | 4 ++-- Scripts/speak-italian.ps1 | 2 +- Scripts/speak-japanese.ps1 | 2 +- Scripts/speak-latin.ps1 | 2 +- Scripts/speak-mandarin.ps1 | 4 ++-- Scripts/speak-polish.ps1 | 2 +- Scripts/speak-portuguese.ps1 | 2 +- Scripts/speak-spanish.ps1 | 2 +- Scripts/speak-swedish.ps1 | 2 +- Scripts/speak-text.ps1 | 2 +- Scripts/speak-turkish.ps1 | 2 +- Scripts/speak-ukrainian.ps1 | 2 +- 22 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Scripts/speak-arabic.ps1 b/Scripts/speak-arabic.ps1 index 0ec5adf6..38eb26ed 100755 --- a/Scripts/speak-arabic.ps1 +++ b/Scripts/speak-arabic.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-arabic "أهلاً" + PS> ./speak-arabic.ps1 "أهلاً" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-checklist.ps1 b/Scripts/speak-checklist.ps1 index 5aba57dc..a2732aec 100755 --- a/Scripts/speak-checklist.ps1 +++ b/Scripts/speak-checklist.ps1 @@ -6,7 +6,7 @@ .PARAMETER Name Specifies the name of the checklist .EXAMPLE - PS> ./speak-checklist + PS> ./speak-checklist.ps1 .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-countdown.ps1 b/Scripts/speak-countdown.ps1 index 863e144c..a37de476 100755 --- a/Scripts/speak-countdown.ps1 +++ b/Scripts/speak-countdown.ps1 @@ -6,7 +6,7 @@ .PARAMETER StartNumber Specifies the number to start from (10 by default) .EXAMPLE - PS> ./speak-countdown 60 + PS> ./speak-countdown.ps1 60 .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-danish.ps1 b/Scripts/speak-danish.ps1 index 657dbfe5..47df9545 100755 --- a/Scripts/speak-danish.ps1 +++ b/Scripts/speak-danish.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-danish Hej + PS> ./speak-danish.ps1 Hej .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-dutch.ps1 b/Scripts/speak-dutch.ps1 index afbb6017..d713e1d4 100755 --- a/Scripts/speak-dutch.ps1 +++ b/Scripts/speak-dutch.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-dutch Hallo + PS> ./speak-dutch.ps1 Hallo .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-english.ps1 b/Scripts/speak-english.ps1 index 338d603e..2d85eaeb 100755 --- a/Scripts/speak-english.ps1 +++ b/Scripts/speak-english.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-english Hi + PS> ./speak-english.ps1 Hi .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-file.ps1 b/Scripts/speak-file.ps1 index 7e1c6511..2f1df04b 100755 --- a/Scripts/speak-file.ps1 +++ b/Scripts/speak-file.ps1 @@ -6,7 +6,7 @@ .PARAMETER File Specifies the path to the text file .EXAMPLE - PS> ./speak-file C:\MyFile.txt + PS> ./speak-file.ps1 C:\MyFile.txt .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-french.ps1 b/Scripts/speak-french.ps1 index 6f402d53..b3882c23 100755 --- a/Scripts/speak-french.ps1 +++ b/Scripts/speak-french.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-french Salut + PS> ./speak-french.ps1 Salut .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-german.ps1 b/Scripts/speak-german.ps1 index d782d7d1..f809b4a0 100755 --- a/Scripts/speak-german.ps1 +++ b/Scripts/speak-german.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-german Hallo + PS> ./speak-german.ps1 Hallo .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-greek.ps1 b/Scripts/speak-greek.ps1 index 6b64b1fe..4592ff18 100755 --- a/Scripts/speak-greek.ps1 +++ b/Scripts/speak-greek.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-greek "γεια" + PS> ./speak-greek.ps1 "γεια" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-hindi.ps1 b/Scripts/speak-hindi.ps1 index 2152db62..837d4503 100755 --- a/Scripts/speak-hindi.ps1 +++ b/Scripts/speak-hindi.ps1 @@ -1,12 +1,12 @@ <# .SYNOPSIS - Speaks text with a Hindi text-to-speech voice + Speaks text in Hindi .DESCRIPTION This PowerShell script speaks the given text with a Hindi text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-hindi "नमस्ते" + PS> ./speak-hindi.ps1 "नमस्ते" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-italian.ps1 b/Scripts/speak-italian.ps1 index c7965c38..74e647ca 100755 --- a/Scripts/speak-italian.ps1 +++ b/Scripts/speak-italian.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-italian Ciao + PS> ./speak-italian.ps1 Ciao .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-japanese.ps1 b/Scripts/speak-japanese.ps1 index f003fddb..354c555d 100755 --- a/Scripts/speak-japanese.ps1 +++ b/Scripts/speak-japanese.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-japanese "ハロー" + PS> ./speak-japanese.ps1 "ハロー" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-latin.ps1 b/Scripts/speak-latin.ps1 index 55a2b744..fb857ae1 100755 --- a/Scripts/speak-latin.ps1 +++ b/Scripts/speak-latin.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-latin Salve + PS> ./speak-latin.ps1 Salve .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-mandarin.ps1 b/Scripts/speak-mandarin.ps1 index 2643d3d6..8b0a287d 100755 --- a/Scripts/speak-mandarin.ps1 +++ b/Scripts/speak-mandarin.ps1 @@ -1,12 +1,12 @@ <# .SYNOPSIS - Speaks text with a Mandarin text-to-speech voice + Speaks text in Mandarin .DESCRIPTION This PowerShell script speaks the given text with a Mandarin text-to-speech (TTS) voice. .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-mandarin "你好" + PS> ./speak-mandarin.ps1 "你好" .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-polish.ps1 b/Scripts/speak-polish.ps1 index 91d0b4bb..ea9d7fc0 100755 --- a/Scripts/speak-polish.ps1 +++ b/Scripts/speak-polish.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-polish cześć + PS> ./speak-polish.ps1 cześć .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-portuguese.ps1 b/Scripts/speak-portuguese.ps1 index 1189b1d3..8d29b0a1 100755 --- a/Scripts/speak-portuguese.ps1 +++ b/Scripts/speak-portuguese.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-portuguese Olá + PS> ./speak-portuguese.ps1 Olá .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-spanish.ps1 b/Scripts/speak-spanish.ps1 index 44d1fb33..f48480fa 100755 --- a/Scripts/speak-spanish.ps1 +++ b/Scripts/speak-spanish.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-spanish Hola + PS> ./speak-spanish.ps1 Hola .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-swedish.ps1 b/Scripts/speak-swedish.ps1 index 96cbcd0c..b3afdf40 100755 --- a/Scripts/speak-swedish.ps1 +++ b/Scripts/speak-swedish.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-swedish Hallå + PS> ./speak-swedish.ps1 Hallå .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-text.ps1 b/Scripts/speak-text.ps1 index 74c0b3d0..e4cd1855 100755 --- a/Scripts/speak-text.ps1 +++ b/Scripts/speak-text.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to read .EXAMPLE - PS> ./speak-text "Hello World" + PS> ./speak-text.ps1 Hi .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-turkish.ps1 b/Scripts/speak-turkish.ps1 index 0ec4ce2d..d02d49a1 100755 --- a/Scripts/speak-turkish.ps1 +++ b/Scripts/speak-turkish.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-turkish Merhaba + PS> ./speak-turkish.ps1 Merhaba .LINK https://github.com/fleschutz/PowerShell .NOTES diff --git a/Scripts/speak-ukrainian.ps1 b/Scripts/speak-ukrainian.ps1 index 594c36a3..0ba0cda3 100755 --- a/Scripts/speak-ukrainian.ps1 +++ b/Scripts/speak-ukrainian.ps1 @@ -6,7 +6,7 @@ .PARAMETER text Specifies the text to speak .EXAMPLE - PS> ./speak-ukrainian "Привіт" + PS> ./speak-ukrainian.ps1 "Привіт" .LINK https://github.com/fleschutz/PowerShell .NOTES