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 set-timer.ps1 [<seconds>]
|
2021-03-22 20:10:18 +01:00
|
|
|
.DESCRIPTION sets a timer for a countdown
|
|
|
|
.LINK https://github.com/fleschutz/PowerShell
|
|
|
|
.NOTES Author: Markus Fleschutz / License: CC0
|
2020-12-29 15:14:21 +01:00
|
|
|
#>
|
2020-12-18 14:15:08 +01:00
|
|
|
|
2021-01-02 11:08:59 +01:00
|
|
|
param([int]$Seconds = 0)
|
2021-04-07 15:17:49 +02:00
|
|
|
if ($Seconds -eq 0 ) { [int]$Seconds = read-host "Enter number of seconds" }
|
2020-12-25 11:45:59 +01:00
|
|
|
|
2021-02-18 20:17:55 +01:00
|
|
|
try {
|
2020-12-18 14:15:08 +01:00
|
|
|
for ($i = $Seconds; $i -gt 0; $i--) {
|
2020-12-25 11:45:59 +01:00
|
|
|
clear-host
|
2020-12-28 11:17:04 +01:00
|
|
|
./write-big "T-$i seconds"
|
2020-12-18 14:15:08 +01:00
|
|
|
start-sleep -s 1
|
|
|
|
}
|
2021-02-10 19:25:48 +01:00
|
|
|
write-host -foregroundColor green "Done - $Seconds seconds countdown finished"
|
2020-12-18 14:15:08 +01:00
|
|
|
exit 0
|
|
|
|
} catch {
|
2021-02-16 10:03:20 +01:00
|
|
|
write-error "ERROR: line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
2020-12-18 14:15:08 +01:00
|
|
|
exit 1
|
|
|
|
}
|