mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-10 21:33:47 +02:00
Improve the comment-based section
This commit is contained in:
@ -1,8 +1,14 @@
|
||||
<#
|
||||
.SYNTAX write-animated.ps1 [<line1>] .. [line9>] [<speed>]
|
||||
.DESCRIPTION writes animated text
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
.SYNOPSIS
|
||||
write-animated.ps1 [<line1>] .. [line9>] [<speed>]
|
||||
.DESCRIPTION
|
||||
Writes animated text
|
||||
.EXAMPLE
|
||||
PS> .\write-animated.ps1 "Hello World"
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($Line1 = "", $Line2 = "", $Line3 = "", $Line4 = "", $Line5 = "", $Line6 = "", $Line7 = "", $Line8 = "", $Line9 = "", [int]$Speed = 30) # 30 ms pause
|
||||
|
Reference in New Issue
Block a user