mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-06-30 12:41:46 +02:00
Added display-time.ps1
This commit is contained in:
22
Scripts/display-time.ps1
Executable file
22
Scripts/display-time.ps1
Executable file
@ -0,0 +1,22 @@
|
||||
#!/snap/bin/powershell
|
||||
|
||||
# Syntax: ./display-time.ps1
|
||||
# Description: displays the current time
|
||||
# Author: Markus Fleschutz
|
||||
# Source: github.com/fleschutz/PowerShell
|
||||
# License: CC0
|
||||
|
||||
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 {
|
||||
Write-Error "ERROR in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user