PowerShell/Scripts/set-timer.ps1

31 lines
606 B
PowerShell
Raw Normal View History

2021-08-26 10:46:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
set-timer.ps1 [<seconds>]
.DESCRIPTION
2021-09-24 17:19:49 +02:00
Sets a timer for a countdown
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-24 17:19:49 +02:00
PS> ./set-timer 60
2021-08-29 17:50:03 +02:00
.NOTES
Author: Markus Fleschutz · License: CC0
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
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)
2020-12-25 11:45:59 +01:00
2021-02-18 20:17:55 +01:00
try {
2021-07-15 15:51:22 +02:00
if ($Seconds -eq 0 ) { [int]$Seconds = read-host "Enter number of seconds" }
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-08-24 20:46:03 +02:00
"✔️ $Seconds seconds countdown finished"
2020-12-18 14:15:08 +01:00
exit 0
} catch {
2021-09-16 20:19:10 +02:00
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
2020-12-18 14:15:08 +01:00
exit 1
}