Rename to say-joke.ps1 and say-quote.ps1

This commit is contained in:
Markus Fleschutz
2021-10-13 10:36:18 +02:00
parent f1c204b798
commit b24f938476
7 changed files with 75 additions and 23 deletions

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
Speaks a random Chuck Norris joke by text-to-speech
Say a random Chuck Norris joke by text-to-speech
.DESCRIPTION
This script selects a random joke in Data/jokes.csv and uses text-to-speech (TTS) for output.
This script selects a random joke in Data/jokes.csv and tells it by text-to-speech (TTS).
.EXAMPLE
PS> ./speak-joke
PS> ./say-joke
(listen and have fun)
.NOTES
Author: Markus Fleschutz · License: CC0

View File

@ -1,10 +1,10 @@
<#
.SYNOPSIS
Speaks a random quote by text-to-speech
Say a random quote by text-to-speech
.DESCRIPTION
This script selects a random quote in Data/quotes.csv and uses text-to-speech (TTS) for output.
This script selects a random quote in Data/quotes.csv and tells it by text-to-speech (TTS).
.EXAMPLE
PS> ./speak-quote
PS> ./say-quote
(listen and learn)
.NOTES
Author: Markus Fleschutz · License: CC0