Bias Analysis
Detected Bias Types
powershell_heavy
missing_linux_example
windows_first
Summary
The documentation provides Azure CLI deployment instructions exclusively using PowerShell syntax and variable assignment, without any Bash or Linux shell equivalents. All CLI examples use Windows-style PowerShell variables and line continuations, which may confuse or hinder Linux/macOS users. There are no Bash examples or notes for Linux users, and PowerShell is presented as the default scripting environment for CLI usage.
Recommendations
- Add equivalent Bash shell examples for Azure CLI commands, using Bash variable assignment and syntax.
- Include a note clarifying that Azure CLI works cross-platform and provide guidance for Linux/macOS users.
- Present both PowerShell and Bash examples side-by-side or in tabs, or default to Bash for CLI documentation unless Windows-specific features are required.
- Avoid using Windows-specific line continuations (backtick `) in CLI examples; use standard Bash line continuations (backslash \) for Linux/macOS.
- Explicitly mention any platform-specific requirements if PowerShell is required for certain steps.
Create Pull Request