Upgrade all DOTNET TOOLs at once with PowerShell
· Ingo Karstein
(. dotnet tool list -g) | select -skip 2 | select-string -pattern "^([^\s]+)" | % { $_.matches.groups[1].value} | % { . dotnet tool update $_ -g} (. dotnet tool list -g) | select -skip 2 | select-string -pattern "^([^\s]+)" | % { $_.matches.groups[1].value} | % { . dotnet tool update $_ -g}