Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
missing_linux_example
Summary
The documentation page demonstrates a Windows bias in several ways. PowerShell examples are provided alongside Azure CLI, but the CLI examples use Windows-style variable assignment and login commands (Connect-AzAccount), which are not valid on Linux/macOS shells. There is no mention of Bash or Linux-specific usage patterns, nor are there examples showing how to use the Azure CLI in a Linux environment. The PowerShell tab appears before the CLI tab, and all scripting examples assume a Windows context. No Linux tools or shell scripting examples are provided.
Recommendations
- Provide Azure CLI examples using Bash syntax, with Linux/macOS-compatible variable assignment and authentication (e.g., 'az login').
- Add explicit instructions for running Azure CLI commands on Linux/macOS, including installation and environment notes.
- Reorder tabs so that Azure CLI (cross-platform) appears before PowerShell (Windows-specific).
- Include notes or examples for Linux users, such as using Bash scripts or running commands in a Linux terminal.
- Avoid using Windows-specific commands (e.g., Connect-AzAccount) in CLI examples; use 'az login' for CLI authentication.
Create Pull Request