PowerShell/scripts/write-typewriter.ps1

31 lines
808 B
PowerShell
Raw Normal View History

2024-10-01 15:24:16 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2024-11-22 14:34:47 +01:00
Writes text like a typewriter
2021-07-13 21:10:02 +02:00
.DESCRIPTION
2022-10-03 12:23:34 +02:00
This PowerShell script writes the given text with the typewriter effect.
2021-10-16 16:50:10 +02:00
.PARAMETER text
2024-11-22 14:34:47 +01:00
Specifies the text to write (sample text by default)
2021-10-16 16:50:10 +02:00
.PARAMETER speed
2024-11-22 14:34:47 +01:00
Specifies the speed (200 ms by default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
2024-11-22 14:34:47 +01:00
PS> ./write-typewriter.ps1 "Hello World"
2021-07-13 21:10:02 +02:00
.LINK
https://github.com/fleschutz/PowerShell
2022-09-06 21:42:04 +02:00
.NOTES
Author: Markus Fleschutz | License: CC0
2020-12-29 15:14:21 +01:00
#>
2020-12-21 14:42:05 +01:00
2024-11-22 14:34:47 +01:00
param([string]$text = "Hello World, this is the PowerShell typewriter.", [int]$speed = 200) # in milliseconds
2020-12-21 14:42:05 +01:00
try {
$Random = New-Object System.Random
2021-09-25 19:43:22 +02:00
$text -split '' | ForEach-Object {
2024-11-22 14:34:47 +01:00
Write-Host $_ -noNewline
Start-Sleep -milliseconds $Random.Next($speed)
2020-12-25 11:30:43 +01:00
}
Write-Host ""
2021-09-27 10:09:45 +02:00
exit 0 # success
2020-12-21 14:42:05 +01:00
} catch {
2022-04-13 12:06:32 +02:00
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
2020-12-21 14:42:05 +01:00
exit 1
2022-10-03 12:23:34 +02:00
}