如果我使用 powershell
[string]$text = "this `nis a `ntest"
$text > c:\test.txt
使用记事本++,结果如下:
this
is a
test
但如果我用 Windows 的记事本打开它,它就不起作用:
this is a test
为什么?我该如何解决?
如果我使用 powershell
[string]$text = "this `nis a `ntest"
$text > c:\test.txt
使用记事本++,结果如下:
this
is a
test
但如果我用 Windows 的记事本打开它,它就不起作用:
this is a test
为什么?我该如何解决?