Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecarlucci committed Jan 7, 2022
1 parent 46bfeb5 commit ce40b2d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,36 @@ Fix.Tests
...
```

### Fixing Azure CLI commands
#### Simple Typo

```
C:\dev>az vm lisr
'lisr' is misspelled or not recognized by the system.
Did you mean 'list' ?
Examples from AI knowledge base:
az vm list
List all VMs.
https://aka.ms/cli_ref
Read more about the command in reference docs
C:\dev>fix
C:\dev>az vm list
...
```

#### Login needed
```
C:\dev>az vm list
User someuser@somedomain.com does not exist in MSAL token cache. Run `az login`.
C:\dev>fix
C:\dev>az login
...
```

## Requirements
- Windows only (sorry!)
- Dotnet 5.0 installed
Expand Down

0 comments on commit ce40b2d

Please sign in to comment.