Added lscmdlets.ps1

This commit is contained in:
Markus Fleschutz 2020-07-28 18:58:50 +00:00
parent a20cd3f04d
commit fdebfc51dc

10
Scripts/lscmdlets.ps1 Executable file
View File

@ -0,0 +1,10 @@
#!/snap/bin/powershell
#
# Syntax: lscmdlets.ps1
# Description: lists the PowerShell cmdlets
# Author: Markus Fleschutz
# Source: github.com/fleschutz/PowerShell
# License: CC0
#
Get-Command -Command-Type cmdlet
exit 0