Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-23 00:19:06 +00:00
parent 8ba6f7fc9e
commit 94c28849c9
382 changed files with 1183 additions and 1056 deletions

View File

@@ -10,7 +10,7 @@ source: https://github.com/tldr-pages/tldr.git
- Install a global tool (don't use `--global` for local tools):
`dotnet tool install --global {{dotnetsay}}`
`dotnet tool install {{[-g|--global]}} {{dotnetsay}}`
- Install tools defined in the local tool manifest:
@@ -18,15 +18,15 @@ source: https://github.com/tldr-pages/tldr.git
- Update a specific global tool (don't use `--global` for local tools):
`dotnet tool update --global {{tool_name}}`
`dotnet tool update {{[-g|--global]}} {{tool_name}}`
- Uninstall a global tool (don't use `--global` for local tools):
`dotnet tool uninstall --global {{tool_name}}`
`dotnet tool uninstall {{[-g|--global]}} {{tool_name}}`
- List installed global tools (don't use `--global` for local tools):
`dotnet tool list --global`
`dotnet tool list {{[-g|--global]}}`
- Search tools in NuGet:
@@ -34,4 +34,4 @@ source: https://github.com/tldr-pages/tldr.git
- Display help:
`dotnet tool --help`
`dotnet tool {{[-h|--help]}}`