Rename to write-date.ps1

This commit is contained in:
Markus Fleschutz 2022-09-10 14:11:46 +02:00
parent 64b95af3e0
commit f14196edf8
2 changed files with 23 additions and 25 deletions

View File

@ -1,25 +0,0 @@
<#
.SYNOPSIS
Determines the current date
.DESCRIPTION
This PowerShell script determines and speaks the current date by text-to-speech (TTS).
.EXAMPLE
PS> ./check-date
It's Sunday, October 17, 2021
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
[system.threading.thread]::currentthread.currentculture=[system.globalization.cultureinfo]"en-US"
$Weekday = (Get-Date -format "dddd")
$CurrentDate = (Get-Date).ToShortDateString()
& "$PSScriptRoot/give-reply.ps1" "It's $Weekday, $CurrentDate"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}

23
Scripts/write-date.ps1 Executable file
View File

@ -0,0 +1,23 @@
<#
.SYNOPSIS
Writes the current date
.DESCRIPTION
This PowerShell script determines and writes the current date.
.EXAMPLE
PS> ./write-date
Sunday, October 17, 2021
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
[system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US"
$CurrentDate = (Get-Date).ToShortDateString()
"📅$CurrentDate"
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}