Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
missing_linux_example
Summary
The documentation page demonstrates a Windows bias in its Azure CLI section by exclusively providing PowerShell-based examples and variable assignments, which are specific to Windows environments. There are no bash or Linux shell equivalents, and the use of PowerShell syntax may confuse or exclude Linux/macOS users. The ordering and example structure implicitly prioritize Windows users, with no mention of cross-platform compatibility or alternative shell instructions.
Recommendations
- Provide equivalent Azure CLI examples using bash syntax, including variable assignments and command execution, to support Linux/macOS users.
- Explicitly state that the Azure CLI commands can be run on any platform, and clarify any platform-specific differences.
- Add a tabbed section for 'Bash (Linux/macOS)' alongside 'PowerShell (Windows)' in the CLI instructions.
- Avoid using PowerShell-specific syntax (e.g., `$variable = value`) as the sole example; include bash-style variable assignment (e.g., `variable=value`).
- Mention prerequisites or installation steps for Azure CLI on Linux/macOS, if relevant.
Create Pull Request