PowerShell/Scripts/write-typewriter.ps1

31 lines
1.0 KiB
PowerShell
Raw Normal View History

2021-09-27 10:38:12 +02:00
<#
2021-07-13 21:10:02 +02:00
.SYNOPSIS
2022-10-03 12:23:34 +02:00
Writes text á la 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
Specifies the text to write
.PARAMETER speed
Specifies the speed (250 ms by default)
2021-07-13 21:10:02 +02:00
.EXAMPLE
2021-09-25 19:43:22 +02:00
PS> ./write-typewriter "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
2022-10-03 12:23:34 +02:00
param([string]$text = "`nHello World`n-----------`n* PowerShell is powerful - fully control your computer`n* PowerShell is cross-platform - available for Linux, Mac OS and Windows`n* PowerShell is open-source and free`n* PowerShell is easy to learn`n* PowerShell is fully documented`n`nThanks for watching`nMarkus`n", [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 {
2022-10-03 12:23:34 +02:00
Write-Host -noNewline $_
Start-Sleep -milliseconds $(1 + $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
}