- 此问题在此处已有答案**:
Powershell - Strange WSL output string encoding(4个答案)
19天前关闭。
要从命令wsl--help中找到每一行带有"-"的内容,下面这些行可以
wsl --help | Select-String -Pattern "-"
wsl --help | Select-String "-"
现在我尝试更复杂的模式:"--"
wsl --help | Select-String -Pattern "--"
wsl --help | Select-String "--"
这个模式虽然有行,但是没有返回,为什么?
更新日期:
wsl --help | Select-String "--" -SimpleMatch
也不行
1条答案
按热度按时间62o28rlo1#
是的,wsl输出utf16le或者unicode,甚至字节都是空的。
“0”表示空。在powershell 7中,匹配项会突出显示。