Add example output

This commit is contained in:
Markus Fleschutz 2021-09-29 22:02:05 +02:00
parent 4983c82830
commit 4f18f35820
5 changed files with 32 additions and 0 deletions

View File

@ -5,6 +5,12 @@
Lists all PowerShell aliases
.EXAMPLE
PS> ./list-aliases
CommandType Name Version Source
----------- ---- ------- ------
Alias CFS -> ConvertFrom-String 3.1.0.0 Microsoft.PowerShell.Utility
Alias fhx -> Format-Hex 3.1.0.0 Microsoft.PowerShell.Utility
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,12 @@
Lists all environment variables
.EXAMPLE
PS> ./list-environment-variables
Name Value
---- -----
ALLUSERSPROFILE C:\ProgramData
APPDATA C:\Users\Joe\AppData\Roaming
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,12 @@
Lists all local computer processes
.EXAMPLE
PS> ./list-processes
Id CPU(s) ProcessName
-- ------ -----------
9712 0,39% 64DriverLoad
2484 AppleMobileDeviceService
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,13 @@
Lists the details of the current time zone
.EXAMPLE
PS> ./list-timezone
Id : Europe/Berlin
DisplayName : (UTC+01:00) Central European Standard Time
StandardName : Central European Standard Time
DaylightName : Central European Summer Time
BaseUtcOffset : 01:00:00
SupportsDaylightSavingTime : True
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,13 @@
Lists all available time zones
.EXAMPLE
PS> ./list-timezones
Id DisplayName SupportsDaylight
SavingTime
-- ----------- ----------------
Hawaiian Standard Time (UTC-10:00) Hawaii False
Alaskan Standard Time (UTC-09:00) Alaska True
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK