From 44ad2aecf8097c55acfc77f923f43eba0b1d145d Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 30 Jun 2023 20:39:17 +0200 Subject: [PATCH] Rename to list-ascii-table.ps1 --- ...e-ascii-table.ps1 => list-ascii-table.ps1} | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) rename Scripts/{write-ascii-table.ps1 => list-ascii-table.ps1} (71%) diff --git a/Scripts/write-ascii-table.ps1 b/Scripts/list-ascii-table.ps1 similarity index 71% rename from Scripts/write-ascii-table.ps1 rename to Scripts/list-ascii-table.ps1 index 4e285ffe..14b56c5d 100644 --- a/Scripts/write-ascii-table.ps1 +++ b/Scripts/list-ascii-table.ps1 @@ -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 ""