Skip to content

Instantly share code, notes, and snippets.

@dinowang
Created November 17, 2023 04:51
Show Gist options
  • Save dinowang/78249858636f1fb2800d04a568990b72 to your computer and use it in GitHub Desktop.
Save dinowang/78249858636f1fb2800d04a568990b72 to your computer and use it in GitHub Desktop.
Update all dotnet tool
#!/bin/bash
for t in $(dotnet tool list -g | awk 'NR>2 {print $1}');
do
dotnet tool update -g $t
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment