mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-09 01:25:04 +01:00
24 lines
624 B
PowerShell
Executable File
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
|
|
}
|