mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-18 00:20:09 +02:00
Update the comment based help
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists all PowerShell aliases
|
||||
.DESCRIPTION
|
||||
list-aliases.ps1
|
||||
This scripts lists all PowerShell aliases.
|
||||
.EXAMPLE
|
||||
PS> ./list-aliases
|
||||
|
||||
|
@@ -2,7 +2,11 @@
|
||||
.SYNOPSIS
|
||||
Lists all anagrams of the given word
|
||||
.DESCRIPTION
|
||||
list-anagrams.ps1 [<word>] [<columns>]
|
||||
This script lists all anagrams of the given word.
|
||||
.PARAMETER Word
|
||||
Specifies the word to use
|
||||
.PARAMETER Columns
|
||||
Specifies the number of columns
|
||||
.EXAMPLE
|
||||
PS> ./list-anagrams Baby
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists all automatic variables of PowerShell
|
||||
.DESCRIPTION
|
||||
list-automatic-variables.ps1
|
||||
This script lists all automatic variables of PowerShell.
|
||||
.EXAMPLE
|
||||
PS> ./list-automatic-variables
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists all branches in a Git repository
|
||||
.DESCRIPTION
|
||||
list-branches.ps1 [<RepoDir>] [<SearchPattern>]
|
||||
This script lists all branches in a Git repository.
|
||||
.PARAMETER RepoDir
|
||||
Specifies the path to the Git repository (current working directory by default)
|
||||
.PARAMETER SearchPattern
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the PowerShell cheat sheet
|
||||
.DESCRIPTION
|
||||
list-cheat-sheet.ps1
|
||||
This script lists the PowerShell cheat sheet.
|
||||
.EXAMPLE
|
||||
PS> ./list-cheat-sheet
|
||||
.NOTES
|
||||
|
@@ -1,9 +1,8 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
List the current weather of cities world-wide
|
||||
Lists current weather of cities world-wide
|
||||
.DESCRIPTION
|
||||
List the current weather of cities world-wide (west to east)
|
||||
list-city-weather.ps1
|
||||
This script lists the current weather of cities world-wide (west to east).
|
||||
.EXAMPLE
|
||||
PS> ./list-city-weather
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists available command-line interface (CLI) tools
|
||||
.DESCRIPTION
|
||||
list-cli-tools.ps1
|
||||
This script lists available command-line interface (CLI) tools.
|
||||
.EXAMPLE
|
||||
PS> ./list-cli-tools
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the contents of the clipboard
|
||||
.DESCRIPTION
|
||||
list-clipboard.ps1
|
||||
This script lists the contents of the clipboard.
|
||||
.EXAMPLE
|
||||
PS> ./list-clipboard
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists all PowerShell cmdlets
|
||||
.DESCRIPTION
|
||||
list-cmdlets.ps1
|
||||
This script lists all PowerShell cmdlets.
|
||||
.EXAMPLE
|
||||
PS> ./list-cmdlets
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists all commits in a Git repository
|
||||
.DESCRIPTION
|
||||
list-commits.ps1 [<RepoDir>] [<Format>]
|
||||
This script lists all commits in a Git repository. Supported output formats are: list, compact, normal or JSON.
|
||||
.PARAMETER RepoDir
|
||||
Specifies the path to the Git repository.
|
||||
.PARAMETER Format
|
||||
|
@@ -2,9 +2,13 @@
|
||||
.SYNOPSIS
|
||||
Lists all console colors
|
||||
.DESCRIPTION
|
||||
list-console-colors.ps1
|
||||
This script lists all available console colors.
|
||||
.EXAMPLE
|
||||
PS> ./list-console-colors
|
||||
|
||||
Name Foreground Background
|
||||
---- ---------- ----------
|
||||
...
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists details of all countries
|
||||
.DESCRIPTION
|
||||
list-countries.ps1
|
||||
This script lists details of all countries.
|
||||
.EXAMPLE
|
||||
PS> ./list-countries
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Shows the credits for the PowerShell Scripts
|
||||
.DESCRIPTION
|
||||
list-credits.ps1
|
||||
This script shows the credits for the PowerShell Scripts.
|
||||
.EXAMPLE
|
||||
PS> ./list-credits
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the current crypto exchange rates
|
||||
.DESCRIPTION
|
||||
list-crypto-rates.ps1
|
||||
This script lists the current crypto exchange rates.
|
||||
.EXAMPLE
|
||||
PS> ./list-crypto-rates
|
||||
.NOTES
|
||||
|
@@ -2,8 +2,9 @@
|
||||
.SYNOPSIS
|
||||
Lists the full directory tree
|
||||
.DESCRIPTION
|
||||
list-dir-tree.ps1 [<DirTree>]
|
||||
<DirTree> is the path to the directory tree
|
||||
This script lists the full directory tree.
|
||||
.PARAMETER DirTree
|
||||
Specifies the path to the directory tree
|
||||
.EXAMPLE
|
||||
PS> ./list-dir-tree C:\
|
||||
.NOTES
|
||||
|
@@ -1,8 +1,8 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists major earthquakes for the last 30 days
|
||||
Lists major earthquakes since 30 days
|
||||
.DESCRIPTION
|
||||
Lists earthquakes with magnitude >= 6.0 for the last 30 days
|
||||
This script lists earthquakes with magnitude >= 6.0 for the last 30 days.
|
||||
.EXAMPLE
|
||||
PS> ./list-earthquakes
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the Emojis of Unicode 13.0
|
||||
.DESCRIPTION
|
||||
list-emojis.ps1
|
||||
This script lists the emojis of Unicode 13.0 sorted by category.
|
||||
.EXAMPLE
|
||||
PS> ./list-emojis
|
||||
.NOTES
|
||||
|
@@ -2,8 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the installed software
|
||||
.DESCRIPTION
|
||||
Lists the installed software (except Windows Store apps)
|
||||
list-installed-software.ps1
|
||||
This script lists the installed software (except Windows Store apps).
|
||||
.EXAMPLE
|
||||
PS> ./list-installed-software
|
||||
.NOTES
|
||||
|
@@ -2,8 +2,9 @@
|
||||
.SYNOPSIS
|
||||
Lists the latest tag on the current branch in a Git repository
|
||||
.DESCRIPTION
|
||||
list-latest-tag.ps1 [<RepoDir>]
|
||||
<RepoDir> is the path to the repository
|
||||
This script lists the latest tag on the current branch in a Git repository.
|
||||
.PARAMETER RepoDir
|
||||
Specifies the path to the repository
|
||||
.EXAMPLE
|
||||
PS> ./list-latest-tag C:\MyRepo
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the content of the recycle bin folder
|
||||
.DESCRIPTION
|
||||
list-recycle-bin.ps1
|
||||
This script lists the content of the recycle bin folder.
|
||||
.EXAMPLE
|
||||
PS> ./list-recycle-bin
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists system information of the local computer
|
||||
.DESCRIPTION
|
||||
list-system-info.ps1
|
||||
This script lists system information of the local computer.
|
||||
.EXAMPLE
|
||||
PS> ./list-system-info
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the details of the current time zone
|
||||
.DESCRIPTION
|
||||
list-timezone.ps1
|
||||
This script lists the details of the current time zone.
|
||||
.EXAMPLE
|
||||
PS> ./list-timezone
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists all available time zones
|
||||
.DESCRIPTION
|
||||
list-timezones.ps1
|
||||
This script lists all available time zones.
|
||||
.EXAMPLE
|
||||
PS> ./list-timezones
|
||||
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the TIOBE index of top programming languages
|
||||
.DESCRIPTION
|
||||
list-tiobe-index.ps1
|
||||
This script lists the TIOBE index of top programming languages.
|
||||
.EXAMPLE
|
||||
PS> ./list-tiobe-index
|
||||
.NOTES
|
||||
|
@@ -2,10 +2,11 @@
|
||||
.SYNOPSIS
|
||||
Lists unused files in a folder (including subfolders)
|
||||
.DESCRIPTION
|
||||
Lists files in a folder with last access time older than <Days>
|
||||
list-unused-files.ps1 <DirTree> <Days>
|
||||
<DirTree> is the path to the directory tree
|
||||
<Days> is the number of days
|
||||
This script scans and lists files in a folder with last access time older than number of days.
|
||||
.PARAMETER DirTree
|
||||
Specifies the path to the directory tree
|
||||
.PARAMETER Days
|
||||
Specifies the number of days
|
||||
.EXAMPLE
|
||||
PS> ./list-unused-files C:\ 100
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the user groups on the local computer
|
||||
.DESCRIPTION
|
||||
list-user-groups.ps1
|
||||
This script lists the user groups on the local computer.
|
||||
.EXAMPLE
|
||||
PS> ./list-user-groups
|
||||
|
||||
|
@@ -2,7 +2,9 @@
|
||||
.SYNOPSIS
|
||||
Lists the hourly weather report
|
||||
.DESCRIPTION
|
||||
list-weather.ps1 [<Location>]
|
||||
This script lists the hourly weather report.
|
||||
.PARAMETER Location
|
||||
Specifies the location to use (determined automatically per default)
|
||||
.EXAMPLE
|
||||
PS> ./list-weather
|
||||
.NOTES
|
||||
|
@@ -2,7 +2,7 @@
|
||||
.SYNOPSIS
|
||||
Lists the current working directory
|
||||
.DESCRIPTION
|
||||
list-workdir.ps1
|
||||
This script lists the current working directory (but not the content itself!)
|
||||
.EXAMPLE
|
||||
PS> ./list-workdir
|
||||
.NOTES
|
||||
|
Reference in New Issue
Block a user