https://github.com/Canop/broot/issues/78
[[Broot]]で[[Windows]]のパスが正しく解釈されない問題。
## ステータス
2021-02-13時点で`Open`。回避策として以下の`br`関数定義が紹介されている。
```powershell
function br {
$outcmd = new-temporaryfile
broot.exe --outcmd $outcmd $args
if (!$?) {
remove-item -force $outcmd
return $lastexitcode
}
$command = get-content $outcmd
if ($command) {
# workaround - paths have some garbage at the start
$command = $command.replace("\\?\", "", 1)
invoke-expression $command
}
remove-item -force $outcmd
}
```
https://github.com/Canop/broot/issues/78#issuecomment-572631419