Skip to content

Instantly share code, notes, and snippets.

@NaClYen
Last active November 17, 2021 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NaClYen/e64cc7807fb03af42daeea2553608233 to your computer and use it in GitHub Desktop.
Save NaClYen/e64cc7807fb03af42daeea2553608233 to your computer and use it in GitHub Desktop.
powershell find alias by keyword
# find DisplayName related to 'alias'
Find-Alias alias
function Find-Alias {
param (
$KeyWord
)
return Get-Alias | Select-Object DisplayName | Select-String $KeyWord
}
function Find-Alias {
param (
$KeyWord
)
return alias | select DisplayName | sls $KeyWord
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment