PowerShell/Scripts/say-time.ps1
2021-10-17 14:30:21 +02:00

24 lines
624 B
PowerShell
Executable File

<#
.SYNOPSIS
Say the current time by text-to-speech
.DESCRIPTION
This script speaks the current time by text-to-speech (TTS).
.EXAMPLE
PS> ./say-time
(It's 2:23 PM)
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
try {
[system.threading.thread]::currentThread.currentCulture=[system.globalization.cultureInfo]"en-US"
$CurrentTime = $((Get-Date).ToShortTimeString())
& "$PSScriptRoot/speak-english.ps1" "It's $CurrentTime"
exit 0 # success
} catch {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}