Bias Analysis
Detected Bias Types
windows_first
powershell_heavy
Summary
The documentation provides Azure CLI examples using PowerShell-style syntax (backticks for line continuation and variable assignment with $), which is specific to Windows/PowerShell environments. There is no mention of Linux/macOS shell equivalents or examples using Bash syntax, which may cause confusion or friction for non-Windows users.
Recommendations
- Provide Azure CLI examples using Bash syntax (backslash for line continuation, variable assignment with export or plain assignment) alongside PowerShell examples.
- Explicitly state that the CLI commands can be run on Linux/macOS and provide any necessary syntax differences.
- Add notes or tabs to switch between PowerShell and Bash examples where appropriate.
Create Pull Request