Filter By
Displaying results 1 - 2 of 2 (Page 1 of 1)
By:
|
89 downloads
|
Last Updated: 8/7/2023
|
Latest Version: 0.1.0
#POC function !c { [CmdletBinding()] param ( [Parameter (Mandatory = $False, Position=0, ValueFromPipeline = $True)] [string]$c ) process { switch ($c) { 1 { one } 2 { two } 3 { three } 4 { four } default { echo "Proof of concept" } } } } ... More info |