new file: SimulateTyping/New-SimulateTyping.ps1
This commit is contained in:
parent
abb5f33253
commit
08b1bf2392
21
SimulateTyping/New-SimulateTyping.ps1
Normal file
21
SimulateTyping/New-SimulateTyping.ps1
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# gitea.RdzeN.net
|
||||||
|
# Simulate Typing
|
||||||
|
function New-SimulateTyping {
|
||||||
|
param(
|
||||||
|
[string]$message
|
||||||
|
)
|
||||||
|
|
||||||
|
# Iterate through each character in the text
|
||||||
|
foreach ($char in $message.ToCharArray()) {
|
||||||
|
# Write each character to the screen
|
||||||
|
Write-Host -NoNewline $char -ForegroundColor Yellow
|
||||||
|
# Wait before writing the next character (adjustable time in milliseconds)
|
||||||
|
Start-Sleep -Milliseconds (Get-Random -Minimum 10 -Maximum 100)
|
||||||
|
}
|
||||||
|
# New line after last char.
|
||||||
|
Write-Host ""
|
||||||
|
}
|
||||||
|
|
||||||
|
# Example usage of the function
|
||||||
|
New-SimulateTyping "This is an example text for typing simulation.
|
||||||
|
Multiline #1`nMultiline #2"
|
Loading…
x
Reference in New Issue
Block a user