Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
missing_linux_example
Summary
The documentation page demonstrates a moderate Windows bias. PowerShell is featured prominently alongside the Azure CLI, and example scripts for both new and existing account operations use PowerShell syntax and variable conventions (e.g., `$rgname`, `$newAccountName`) even in CLI examples. There is no mention of Linux-specific shell usage (such as Bash), nor are there examples tailored for Linux environments (e.g., using export for environment variables, or showing CLI commands in Bash syntax). The login command 'Connect-AzAccount' is shown in CLI sections, which is a PowerShell command and not valid in Bash/Linux. No Linux-specific tools or patterns are referenced.
Recommendations
- Provide explicit Bash/Linux shell examples for Azure CLI commands, using export or local variable assignment (e.g., export RGNAME=...) and removing PowerShell-specific syntax.
- Clarify login instructions for Azure CLI on Linux (e.g., use 'az login' instead of 'Connect-AzAccount').
- Ensure variable assignment and scripting examples in CLI sections use syntax compatible with Linux shells.
- Add notes or tabs for Linux users where operational steps differ from Windows/PowerShell.
- Review and update screenshots or instructions to include Linux terminal usage where appropriate.
Create Pull Request