Skip to content

Instantly share code, notes, and snippets.

View KirkMunro's full-sized avatar
💤
Busy working on other projects

Kirk Munro KirkMunro

💤
Busy working on other projects
View GitHub Profile
@KirkMunro
KirkMunro / Find-PSCmdletSource.cs
Created November 2, 2018 19:40
Find the open source code for a cmdlet that ships as part of PowerShell Core
function Find-PSCmdletSource {
[CmdletBinding()]
[OutputType([string])]
[Alias('oss')]
param(
[Parameter(Position=0, Mandatory=$true, ValueFromPipeline=$true)]
[ValidateNotNullOrEmpty()]
[Alias('Name')]
[string[]]
$CmdletName,