2024-11-08 12:38:20 +01:00
|
|
|
The *write-clock.ps1* Script
|
|
|
|
===========================
|
2023-07-29 09:45:37 +02:00
|
|
|
|
2023-08-06 21:36:33 +02:00
|
|
|
This PowerShell script writes the current time as ASCII clock.
|
2023-07-29 09:45:37 +02:00
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Parameters
|
|
|
|
----------
|
2023-07-29 09:45:37 +02:00
|
|
|
```powershell
|
2024-11-08 12:35:11 +01:00
|
|
|
/home/markus/Repos/PowerShell/scripts/write-clock.ps1 [<CommonParameters>]
|
2023-07-29 09:45:37 +02:00
|
|
|
|
|
|
|
[<CommonParameters>]
|
|
|
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
|
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Example
|
|
|
|
-------
|
2023-07-29 09:45:37 +02:00
|
|
|
```powershell
|
|
|
|
PS> ./write-clock.ps1
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Notes
|
|
|
|
-----
|
2023-07-29 09:45:37 +02:00
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Related Links
|
|
|
|
-------------
|
2023-07-29 09:45:37 +02:00
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
|
2023-07-29 10:04:38 +02:00
|
|
|
Script Content
|
|
|
|
--------------
|
2023-07-29 09:45:37 +02:00
|
|
|
```powershell
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
|
|
Writes an ASCII clock
|
|
|
|
.DESCRIPTION
|
2023-08-06 21:36:33 +02:00
|
|
|
This PowerShell script writes the current time as ASCII clock.
|
2023-07-29 09:45:37 +02:00
|
|
|
.EXAMPLE
|
|
|
|
PS> ./write-clock.ps1
|
|
|
|
.LINK
|
|
|
|
https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES
|
|
|
|
Author: Markus Fleschutz | License: CC0
|
|
|
|
#>
|
|
|
|
|
|
|
|
try {
|
|
|
|
[system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US"
|
2023-08-06 21:36:33 +02:00
|
|
|
$Weekday = Get-Date -UFormat "%A"
|
|
|
|
$Date = Get-Date -UFormat "%d %b %Y"
|
|
|
|
$Week = Get-Date -UFormat "%V"
|
2023-07-29 09:45:37 +02:00
|
|
|
|
|
|
|
Clear-Host
|
|
|
|
& "$PSScriptRoot/write-big.ps1" " $Weekday"
|
|
|
|
Write-Output ""
|
2023-08-06 21:36:33 +02:00
|
|
|
& "$PSScriptRoot/write-big.ps1" " $Date"
|
2023-07-29 09:45:37 +02:00
|
|
|
Write-Output ""
|
2023-08-06 21:36:33 +02:00
|
|
|
& "$PSScriptRoot/write-big.ps1" " WEEK $Week"
|
2023-07-29 09:45:37 +02:00
|
|
|
Write-Output ""
|
|
|
|
|
|
|
|
$StartPosition = $HOST.UI.RawUI.CursorPosition
|
|
|
|
while ($true) {
|
|
|
|
$Time = Get-Date -format "HH:mm:ss"
|
|
|
|
& "$PSScriptRoot/write-big.ps1" " $Time "
|
2023-08-06 21:36:33 +02:00
|
|
|
Write-Output "`n (press <Ctrl> <C> to stop)"
|
2023-07-29 09:45:37 +02:00
|
|
|
Start-Sleep -seconds 1
|
|
|
|
$HOST.UI.RawUI.CursorPosition = $StartPosition
|
|
|
|
}
|
|
|
|
exit 0 # success
|
|
|
|
} catch {
|
|
|
|
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2024-11-20 11:52:20 +01:00
|
|
|
*(generated by convert-ps2md.ps1 as of 11/20/2024 11:52:02)*
|