This page contains Windows bias

About This Page

This page is part of the Azure documentation. It contains code examples and configuration instructions for working with Azure services.

Bias Analysis

Bias Types:
⚠️ windows_first
⚠️ missing_linux_example
Summary:
The documentation consistently uses Windows-style paths (e.g., 'C:\myDirectory') in all examples and does not provide any Linux/macOS path examples (e.g., '/home/user/myDirectory'). While there are tips about quoting differences between shells, the actual command examples are all Windows-centric. No Linux or macOS-specific examples or patterns are shown.
Recommendations:
  • Provide parallel examples using Linux/macOS-style paths (e.g., '/home/user/myDirectory') alongside Windows examples.
  • Explicitly show both Windows (cmd.exe) and Linux/macOS (bash/zsh) command syntax, including correct quoting and path separators.
  • Consider a table or tabbed interface to let users select their OS and see relevant examples.
  • Mention any OS-specific considerations (such as case sensitivity or file permission issues) where relevant.
GitHub Create pull request

Scan History

Date Scan ID Status Bias Status
2025-08-19 00:01 #85 completed ✅ Clean
2025-07-13 21:37 #48 completed ❌ Biased
2025-07-12 23:44 #41 in_progress ❌ Biased

Flagged Code Snippets

azcopy sync 'C:\myDirectory' 'https://mystorageaccount.blob.core.windows.net/mycontainer' --recursive
azcopy sync 'https://mystorageaccount.blob.core.windows.net/mycontainer' 'C:\myDirectory' --recursive