PowerShell - Automation Patterns
Identify the error in this PowerShell snippet for drift detection:
$baseline = Get-Content baseline.txt
$current = Get-Content current.txt
Compare-Object -Reference $baseline -Difference $current
