Add example output

This commit is contained in:
Markus Fleschutz 2021-09-29 21:50:10 +02:00
parent ccd0d3e8f0
commit 4983c82830
6 changed files with 32 additions and 0 deletions

View File

@ -5,6 +5,12 @@
Lists available command-line interface (CLI) tools
.EXAMPLE
PS> ./list-cli-tools
Name Version Location FileSize
---- ------- -------- --------
at 10.0.19041.1 C:\WINDOWS\system32\at.exe 31232
attrib 10.0.19041.1 C:\WINDOWS\system32\attrib.exe 23040
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,11 @@
Lists all drives connected to the computer
.EXAMPLE
PS> ./list-drives
Name Root Used (GB) Free (GB)
---- ---- --------- ---------
C C:\ 76,14 35,05
D D:\ 6648,12 744,16
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,11 @@
Lists all PowerShell modules
.EXAMPLE
PS> ./list-modules
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint-Computer...}
Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, Add-Type, Clear-Variable...}
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,11 @@
Lists all tags in the current/given Git repository
.EXAMPLE
PS> ./list-tags C:\MyRepo
Tag Description
--- -----------
v0.1 Update README.md
v0.2 Fix typo
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,12 @@
Lists all Windows scheduler tasks
.EXAMPLE
PS> ./list-tasks
TaskPath TaskName State
-------- -------- -----
\Microsoft\Windows\.NET Framework\ .NET Framework NGEN v4.0.30319 Ready
\Microsoft\Windows\.NET Framework\ .NET Framework NGEN v4.0.30319 64 Ready
...
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

@ -5,6 +5,11 @@
Lists the installed text-to-speech (TTS) voices
.EXAMPLE
PS> ./list-voices
Name Culture Gender Age
---- ------- ------ ---
Microsoft David Desktop en-US Male Adult
Microsoft Zira Desktop en-US Female Adult
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK