Skip to content

Instantly share code, notes, and snippets.

@Sambardo
Last active February 28, 2018 19:20
Show Gist options
  • Save Sambardo/9e05630c79ea65306279a0260c52c54c to your computer and use it in GitHub Desktop.
Save Sambardo/9e05630c79ea65306279a0260c52c54c to your computer and use it in GitHub Desktop.
basic -eq sample for blog
switch("hello") #will match uppercase
{
"HELLO" {write-host "Uppercase" -ForegroundColor Magenta;break}
"hello" {write-host "lowercase" -ForegroundColor green;break}
}
switch("hello") #will NOT match h*
{
"h*" {write-host "wildcard" -ForegroundColor Magenta;break}
"hello" {write-host "lowercase" -ForegroundColor green;break}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment