Update write-clock.ps1 and write-time.ps1

This commit is contained in:
Markus Fleschutz 2023-08-06 19:31:40 +02:00
parent aa67a452f8
commit 18e4f20852
2 changed files with 10 additions and 13 deletions

View File

@ -2,7 +2,7 @@
.SYNOPSIS .SYNOPSIS
Writes an ASCII clock Writes an ASCII clock
.DESCRIPTION .DESCRIPTION
This PowerShell script writes the current time as ACSII clock This PowerShell script writes the current time as ASCII clock.
.EXAMPLE .EXAMPLE
PS> ./write-clock.ps1 PS> ./write-clock.ps1
.LINK .LINK
@ -13,27 +13,23 @@
try { try {
[system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US" [system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US"
$Weekday = Get-Date -UFormat "%A"
$Date = Get-Date -UFormat "%d %b %Y"
$Week = Get-Date -UFormat "%V"
Clear-Host Clear-Host
$Weekday = Get-Date -UFormat "%A"
& "$PSScriptRoot/write-big.ps1" " $Weekday" & "$PSScriptRoot/write-big.ps1" " $Weekday"
Write-Output "" Write-Output ""
& "$PSScriptRoot/write-big.ps1" " $Date"
$Date = Get-Date -UFormat "%d%b%y"
& "$PSScriptRoot/write-big.ps1" " $Date"
Write-Output "" Write-Output ""
& "$PSScriptRoot/write-big.ps1" " WEEK $Week"
$Week = Get-Date -UFormat "%V"
& "$PSScriptRoot/write-big.ps1" " WEEK$Week"
Write-Output "" Write-Output ""
$StartPosition = $HOST.UI.RawUI.CursorPosition $StartPosition = $HOST.UI.RawUI.CursorPosition
while ($true) { while ($true) {
$Time = Get-Date -format "HH:mm:ss" $Time = Get-Date -format "HH:mm:ss"
& "$PSScriptRoot/write-big.ps1" " $Time " & "$PSScriptRoot/write-big.ps1" " $Time "
Write-Output "" Write-Output "`n (press <Ctrl> <C> to stop)"
Write-Output " (press <Ctrl> <C> to stop)"
Start-Sleep -seconds 1 Start-Sleep -seconds 1
$HOST.UI.RawUI.CursorPosition = $StartPosition $HOST.UI.RawUI.CursorPosition = $StartPosition
} }

View File

@ -2,9 +2,10 @@
.SYNOPSIS .SYNOPSIS
Writes the current time Writes the current time
.DESCRIPTION .DESCRIPTION
This PowerShell script determines and writes the current time. This PowerShell script queries the current time and writes it to the console.
.EXAMPLE .EXAMPLE
PS> ./write-time PS> ./write-time.ps1
🕒7:20 PM
.LINK .LINK
https://github.com/fleschutz/PowerShell https://github.com/fleschutz/PowerShell
.NOTES .NOTES