cloudnyn3
cloudnyn3

Reputation: 897

Cmdlet in PowerShell to display certain groups

I'm trying to use the Get-Verb command in PowerShell and route only the "Common" verbs to output. However I've tried a bunch of different combinations I used a while ago that will not work now. What would be the easiest way to just display the "common verbs"?

Upvotes: 0

Views: 85

Answers (1)

mjolinor
mjolinor

Reputation: 68273

Something like

get-verb | where {$_.group -eq 'common'}

?

Upvotes: 2

Related Questions