PowerShell/Scripts/display-time.ps1

23 lines
505 B
PowerShell
Raw Normal View History

2020-12-24 12:12:59 +01:00
#!/snap/bin/powershell
2020-12-29 15:14:21 +01:00
<#
.SYNTAX ./display-time.ps1
.DESCRIPTION displays the current time
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
#>
2020-12-24 12:12:59 +01:00
try {
for ($i = 0; $i -lt 1000; $i++) {
$CurrentTime = Get-Date -format "yyyy-MM-dd HH:mm:ss"
clear-host
write-output ""
./write-big $CurrentTime
write-output ""
start-sleep -s 1
}
exit 0
} catch {
2020-12-25 11:30:43 +01:00
write-error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-24 12:12:59 +01:00
exit 1
}