Bias Analysis
Detected Bias Types
powershell_heavy
windows_first
missing_linux_example
Summary
The documentation page demonstrates a moderate Windows bias. All query examples for Azure Resource Graph (ARG) are provided only in PowerShell syntax, with no equivalent Bash or cross-platform Azure CLI examples. The use of PowerShell pipelines (| %{ ... }) in Azure CLI command snippets further reinforces a Windows-centric approach, as this syntax is not natively supported in Bash or Linux shells. There is mention of scheduling with crontab, but no Linux/macOS-specific command examples are given for ARG queries or artifact deletion.
Recommendations
- Provide ARG query examples using Azure CLI and Bash syntax alongside PowerShell.
- Replace PowerShell pipeline constructs in Azure CLI examples with Bash-compatible alternatives (e.g., xargs).
- Explicitly mention Linux/macOS usage patterns for all command-line operations.
- Add notes or sections clarifying cross-platform compatibility and differences.
Create Pull Request