mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-20 01:01:37 +00:00
Update cheatsheets
This commit is contained in:
@@ -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]}}`
|
||||
|
||||
Reference in New Issue
Block a user