Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
missing_linux_example
Summary
The documentation page demonstrates a Windows bias by providing only PowerShell examples for Azure Resource Graph queries, omitting equivalent Linux-friendly shell (bash/az CLI) examples. The use of PowerShell syntax (e.g., | %{}) in Azure CLI command snippets further reinforces this bias, as it is not portable to Linux environments. While crontab is mentioned for scheduling, actual command examples and automation patterns are Windows-centric.
Recommendations
- Provide bash and az CLI examples for all resource queries, especially for ARG queries currently shown only in PowerShell.
- Replace or supplement PowerShell pipeline syntax (| %{ ... }) with bash equivalents (e.g., xargs) in Azure CLI command snippets.
- Explicitly mention and demonstrate Linux automation patterns (e.g., using cron, shell scripts) alongside Windows/PowerShell approaches.
- Ensure all command-line examples are cross-platform, or clearly label them as Windows/PowerShell-specific and provide Linux alternatives.
Create Pull Request