PowerShell/Scripts/write-marquee.ps1

37 lines
1.5 KiB
PowerShell
Raw Normal View History

2021-04-07 11:53:57 +02:00
#!/usr/bin/pwsh
2021-01-03 18:32:46 +01:00
<#
2021-04-07 15:17:49 +02:00
.SYNTAX write-marquee.ps1 [<text>] [<speed>]
2021-03-22 20:10:18 +01:00
.DESCRIPTION writes the given text as marquee
.LINK https://github.com/fleschutz/PowerShell
.NOTES Author: Markus Fleschutz / License: CC0
2021-01-03 18:32:46 +01:00
#>
2021-02-18 20:17:55 +01:00
param($Text = "PowerShell is powerful! PowerShell is cross-platform! PowerShell is open-source! PowerShell is easy to learn! Powershell is fully documented", [int]$Speed = 60) # 60 ms pause
2021-01-03 18:32:46 +01:00
function StartMarquee { param([string]$text)
$Length = $text.Length
$Start = 1
$End = ($Length - 80)
clear-host
write-output ""
write-output "------------------------------------------------------------------------------------"
$StartPosition = $HOST.UI.RawUI.CursorPosition
$StartPosition.X = 2
write-output "| |"
write-output "------------------------------------------------------------------------------------"
foreach ($Pos in $Start .. $End) {
$HOST.UI.RawUI.CursorPosition = $StartPosition
$TextToDisplay = $text.Substring($Pos, 80)
write-host -nonewline $TextToDisplay
start-sleep -milliseconds $Speed
}
write-output ""
write-output ""
write-output ""
}
2021-01-03 18:35:34 +01:00
StartMarquee " +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ $Text +++ "
2021-01-03 18:32:46 +01:00
exit 0