mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-12-23 23:29:02 +01:00
Rename to list-ascii-table.ps1
This commit is contained in:
parent
7f4d2d7575
commit
44ad2aecf8
@ -1,3 +1,22 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists the ASCII table
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists the ASCII table on the console.
|
||||
.EXAMPLE
|
||||
PS> ./list-ascii-table.ps1
|
||||
|
||||
ASCII TABLE
|
||||
Dec Oct Hex HTML Symbol Description
|
||||
--- --- --- ---- ------ -----------
|
||||
0 000 00 � NUL Null character
|
||||
...
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
""
|
||||
Write-Host "ASCII TABLE" -foregroundColor green
|
||||
""
|
Loading…
Reference in New Issue
Block a user