PowerShell中的转义字符是什么?
程序员文章站
2022-06-17 22:42:56
powershell中转义字符是`,向后撇号(backward apostrophe,是tab键上面的按键,不是单引号),例如:
复制代码 代码如下:
write-ho...
powershell中转义字符是`,向后撇号(backward apostrophe,是tab键上面的按键,不是单引号),例如:
write-host `$env:processor_architecture=$env:processor_architecture
会输出$env:processor_architecture=amd64
当然还有一个转义字符是在正则表达式(regular expression)中使用的\,斜线。
上一篇: 柔性数组(Redis源码学习)
下一篇: ruby 标准类型总结