<# .SYNOPSIS Checks the time of dawn .DESCRIPTION This script queries the time of dawn and answers by text-to-speech (TTS). .EXAMPLE PS> ./check-dawn .NOTES Author: Markus Fleschutz · License: CC0 .LINK https://github.com/fleschutz/PowerShell #> try { $Reply = (Invoke-WebRequest http://wttr.in/?format="Dawn is at %D." -UserAgent "curl" -useBasicParsing).Content & "$PSScriptRoot/give-reply.ps1" "$Reply" exit 0 # success } catch { "⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))" exit 1 }