Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
missing_linux_example
Summary
The documentation page demonstrates Windows bias by exclusively providing Azure CLI examples in PowerShell syntax, which is native to Windows. No Bash or Linux shell equivalents are shown, and the examples use PowerShell formatting (curly braces for variables, command style). There is no mention of Linux-specific usage patterns, nor are Linux/Bash examples provided alongside or before the Windows/PowerShell ones.
Recommendations
- Provide equivalent Azure CLI examples using Bash syntax (e.g., az tag update --resource-id $resourceGroup ...), with variable usage and quoting appropriate for Linux shells.
- Explicitly mention that Azure CLI is cross-platform and can be used on Windows, Linux, and macOS, and show examples for both environments.
- Avoid using only PowerShell syntax for CLI commands; include Bash examples or use generic syntax where possible.
- If referencing command-line usage, clarify any platform-specific differences (such as variable substitution or quoting).
Create Pull Request