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

@ -30,8 +30,8 @@ export-to-serenade.ps1 [[-FilePattern] <String>] [[-TargetFile] <String>] [<Comm
## Example
```powershell
PS>./export-to-serenade.ps1
Found 264 scripts, starting export to C:\Users\Markus/.serenade/scripts/PowerShell.js...
exported 264 PowerShell scripts for Serenade voice control in 22 sec
Exporting 264 scripts to C:\Users\Markus/.serenade/scripts/PowerShell.js...
exported 264 PowerShell scripts to Serenade in 22 sec
```
## Notes

26
Docs/say-joke.md Normal file
View File

@ -0,0 +1,26 @@
## say-joke.ps1 - Say a random Chuck Norris joke by text-to-speech
This script selects a random joke in Data/jokes.csv and tells it by text-to-speech (TTS).
## Parameters
```powershell
say-joke.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS>./say-joke
(listen and have fun)
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of say-joke.ps1*

26
Docs/say-quote.md Normal file
View File

@ -0,0 +1,26 @@
## say-quote.ps1 - Say a random quote by text-to-speech
This script selects a random quote in Data/quotes.csv and tells it by text-to-speech (TTS).
## Parameters
```powershell
say-quote.ps1 [<CommonParameters>]
[<CommonParameters>]
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
```
## Example
```powershell
PS>./say-quote
(listen and learn)
```
## Notes
Author: Markus Fleschutz · License: CC0
## Related Links
https://github.com/fleschutz/PowerShell
*Generated by convert-ps2md.ps1 using the comment-based help of say-quote.ps1*