Bias Analysis
Detected Bias Types
windows_first
powershell_heavy
Summary
The documentation provides both Azure CLI and Azure PowerShell examples for listing regions. However, the PowerShell example is given directly after the CLI example, and PowerShell is a Windows-centric tool, which may suggest a slight Windows bias. There are no Linux-specific shell examples (e.g., Bash, grep, jq), nor is there explicit mention of Linux tools or patterns.
Recommendations
- Add a Bash example using Azure CLI, such as `az account list-locations --query "[].name" -o tsv`.
- Clarify that Azure CLI works cross-platform and is recommended for Linux/macOS users.
- If PowerShell is mentioned, note that it is available cross-platform, but most Linux users prefer Bash.
- Consider listing the Azure CLI example first, as it is more universally applicable.
Create Pull Request