mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-15 12:34:25 +01:00
18 lines
310 B
PowerShell
18 lines
310 B
PowerShell
<#
|
|
.SYNOPSIS
|
|
Spells a word
|
|
.DESCRIPTION
|
|
This script spells the given word by text-to-speech (TTS).
|
|
.EXAMPLE
|
|
PS> ./spell-word
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
$Reply = "T E S T"
|
|
|
|
& "$PSScriptRoot/give-reply.ps1" "$Reply"
|
|
exit 0 # success
|