Rename to list-ascii-table.ps1

This commit is contained in:
Markus Fleschutz 2023-06-30 20:39:17 +02:00
parent 7f4d2d7575
commit 44ad2aecf8

View File

@ -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 &#00; NUL Null character
...
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
""
Write-Host "ASCII TABLE" -foregroundColor green
""