PowerShell/Scripts/display-time.ps1

25 lines
579 B
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2020-12-29 15:14:21 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX display-time.ps1 [<seconds>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION displays the current time for 10 seconds by default
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-24 12:12:59 +01:00
2021-01-09 12:36:37 +01:00
param([int]$Seconds = 10)
2020-12-24 12:12:59 +01:00
try {
2021-01-09 12:36:37 +01:00
for ([int]$i = 0; $i -lt $Seconds; $i++) {
2020-12-24 12:12:59 +01:00
clear-host
write-output ""
2021-01-09 12:36:37 +01:00
$CurrentTime = Get-Date -format "yyyy-MM-dd HH:mm:ss"
2020-12-24 12:12:59 +01:00
./write-big $CurrentTime
write-output ""
start-sleep -s 1
}
exit 0
} catch {
2021-02-16 10:03:20 +01:00
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-24 12:12:59 +01:00
exit 1
}