mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 21:07:40 +02:00
Improve the comment-based section
This commit is contained in:
@ -1,9 +1,14 @@
|
||||
#!/usr/bin/pwsh
|
||||
<#
|
||||
.SYNTAX write-braille.ps1 [<text>]
|
||||
.DESCRIPTION writes the given text in Braille
|
||||
.LINK https://github.com/fleschutz/PowerShell
|
||||
.NOTES Author: Markus Fleschutz / License: CC0
|
||||
.SYNOPSIS
|
||||
write-braille.ps1 [<text>]
|
||||
.DESCRIPTION
|
||||
Writes the given text in Braille
|
||||
.EXAMPLE
|
||||
PS> .\write-braille.ps1 "Hello World"
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz / License: CC0
|
||||
#>
|
||||
|
||||
param($Text = "")
|
||||
|
Reference in New Issue
Block a user