mirror of
https://github.com/djohnlewis/stackdump
synced 2024-12-12 19:07:34 +00:00
15 lines
822 B
PowerShell
15 lines
822 B
PowerShell
|
<EFBFBD><EFBFBD><#
|
|||
|
.SYNOPSIS
|
|||
|
Lists the management commands for Stackdump.
|
|||
|
.DESCRIPTION
|
|||
|
Prints out a list of all the management commands supported in this version of
|
|||
|
Stackdump.
|
|||
|
.EXAMPLE
|
|||
|
List-StackdumpCommands
|
|||
|
#>
|
|||
|
|
|||
|
$ScriptDir = Split-Path $MyInvocation.MyCommand.Path
|
|||
|
$CommandsDir = Join-Path $ScriptDir 'python\src\stackdump\commands'
|
|||
|
|
|||
|
ls $CommandsDir -Filter '*.py' | % { Write-Host "`t$($_.BaseName)" }
|
|||
|
|