PowerShell/Scripts/spell-word.ps1
Markus Fleschutz 1a94413a0e Simple rename
2021-12-11 12:32:03 +01:00

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